$(function() {
    $(".popupcontainer").dialog({
        autoOpen: false,
        modal: true,
        width: 350,
        height: 250
    });


    // Login or not
    if (($(".loginuserid").val()) && ($(".loginuserid").val() != "")) {
        $(".popuplogin").attr("href", "customermyaccount.aspx");
    }
    else {
        $(".popuplogin").click(function() {
            showdialog();
        });
    }
});

function showdialog() {

    if ((!$(".loginuserid").val()) || ($(".loginuserid").val() == "")) {
        $(".popupcontainer").html('<iframe id="modalIframeId" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" />').dialog("open");
        $("#modalIframeId").attr("src", $(".loginformurl").val());
//        $('#modalIframeId').contents().find('body').css('background', 'none');
    }
    else {
        window.location = this.href;
    }

    return false;
}