﻿/// <reference path="~/Scripts/jquery-1.7.1.js" />
/// <reference path="~/Scripts/jquery.cookie.js" />

// Document Ready
//#region
$(document).ready(function () {
    $("#dlg_portal_selection_form").dialog({
        autoOpen: false,
        height: 'auto',
        width: 'auto',
        modal: true,
        resizable: false,
        buttons: {
            OK: function () {
                var portal = $('input:radio[name="portal"]:checked').val();
                $.cookie("portal", portal, { path: '/', expires: 365 });
                window.location.href = portal;
            },
            Cancel: function () {
                $(this).dialog("close");
            }
        },
        close: function () {
            $('#portal_selection_form').get(0).reset();
        }
    });

    $("#customer_login_anchor").click(function () {
        var portal = $.cookie("portal");
        $('input:radio[value="' + portal + '"]').attr("checked", "checked");
        $("#dlg_portal_selection_form").dialog("open");
    });
});
//#endregion

