// -------------------------------------------------
// popup
// -------------------------------------------------
$(document).ready(function() {
    //recommend
    $("#recommendbutton").click(function() {
        cu_generatePopup("recommendPopup", "/pages/recommend.aspx", 400, 280, "tell a friend");
    });
    //print
    $("#printbutton").click(function() {
        cu_generatePopup("printPopup", "/pages/print.aspx", 745, 600, "print");
    });
    //privacy
    $("#privacybutton").click(function() {
        var params = $("#privacybutton").attr("page");
        cu_generatePopup("privacyPopup", "/pages/popup.aspx?" + params, 745, 600, "Info");
    });
});



function cu_generatePopup(id, url, width, height, popupTitle) {
    $("#Main").append("<div ID=" + id + "><iframe src=" + url + " width=" + width + " height=" + height + " frameborder=\"0\">&nbsp;</iframe></div>");
    $("#" + id).ready(function() {
        $("#" + id).dialog({
            bgiframe: true,
            height: height + 31,
            width: width,
            modal: true,
            overlay: {
                backgroundColor: '#000',
                opacity: 0.5
            },
            draggable: false,
            resizable: false,
            dialogClass: "jQueryPopup",
            title: popupTitle
        });
    });
}

function CU_popupDiv(url, width, height) {
    var id = "popupGallery";
    $("#Main").append("<div ID=" + id + "><iframe src=" + url + " width=" + width + " height=" + height + " frameborder=\"0\">&nbsp;</iframe></div>");
    $("#" + id).ready(function() {
        $("#" + id).dialog({
            bgiframe: true,
            height: height + 31,
            width: width,
            modal: true,
            draggable: false,
            resizable: false
        });
    });
}
