﻿function sccgovModalPopup(title, header, data, footer, bottom, form, option) {
    var sccgovModalDialogData = $(header + data + footer + bottom);
    sccgovModalDialogData.dialog({
        autoOpen: true, title: title, resizable: false, width: 650, modal: true, closeText: "Close", close: function (event, ui) {
            if (option == "double") {
                $('.ui-widget-overlay').css("background-color", "#666666");
                $('.ui-widget-overlay').css("opacity", "0.5");
            }
            else {
                sccgovModalDialogData.dialog('destroy');
            }
        }
    });
}

function languageInfo(msg, desturl) {
    if (desturl == "") {
        sccgovModalPopup("Language Selection", "<div class=\"sccgov_events_container\">", "<p>" + msg + "</p>", "<div id=\"sccgov_calendar_popup_bottom\"></div>", "</div>", "", "double");
    }
    else {
        sccgovModalPopup("Language Selection", "<div class=\"sccgov_events_container\">", "<p>" + msg + "</p><p><a href=\"" + desturl + "\">Click here to continue</a></p>", "<div id=\"sccgov_calendar_popup_bottom\"></div>", "</div>", "", "double");
    }
}
