﻿function popupHS(PopURL, x, y, wname) {
    if (wname == "referrer") {
        fens = window.document.referrer;
        fens.location.href = PopURL;
    } else {
        var fens = window.open(PopURL, wname, 'directories=no,location=no,menubar=no,resizable=yes,status=no,scrollbars=yes,toolbar=no,width=' + x + ',height=' + y);
    }
    fens.focus();
}
function popupHSFancy(PopURL) {
    var id = "p_" + PopURL.replace(/\W/, "");
    if ($("#" + id).size() == 0) {
        $("#p_linkcontainer").append("<a id=\"" + id + "\" href=\"" + PopURL + "\">Image Map Link</a>");
        $("#" + id).fancybox({
            "type": "iframe",
            "width": 800
        });
    }
    $("#" + id).trigger("click");
}

