﻿function popUpRepeater(URL) {
    showPopup("image.aspx?url=" + URL, 525, 525);
}
function doItemDetails(pid, pt) {
    var file = "popup/ProductDetails.aspx?id=" + pid + "&pt=" + pt;
    var width = 630;
    var height = 493;
    windowSize();
    var iframe = document.getElementById("frm_PopupProduct");
    var tdiv = document.getElementById("div_PopupProduct");
    if (tdiv == null)
        return;
    iframe.style.width = width.toString() + "px";
    iframe.style.height = height.toString() + "px";
    iframe.src = file;
    tdiv.style.left = (myWidth / 2) - (width / 2);
    height = height + 28;
    tdiv.style.top = (myHeight / 2) - (height / 2) + myOffset;
    tdiv.style.display = "inline";
}
function moveItemDetails() {
    windowSize();
    var iframe = document.getElementById("frm_Popup");
    var tdiv = document.getElementById("div_Popup");
    var width = parseInt(iframe.style.width);
    var height = parseInt(iframe.style.height);
    if (tdiv == null)
        return;
    tdiv.style.left = (myWidth / 2) - (width / 2);
    height = height + 28;
    tdiv.style.top = (myHeight / 2) - (height / 2) + myOffset;
    //alert(myWidth + " " + myHeight + " " + myOffset);
}
function hideItemDetails() {
    document.getElementById("div_Popup").style.display = "none";
    document.getElementById("frm_Popup").src = "loading.htm";
}