﻿function displayPWPPopUp(PWPID, zindex) {
   /*
    dimOn();*/
    document.getElementById('divPWPPopUP' + PWPID).style.zIndex = "" + zindex;
    document.getElementById('divPWPPopUP' + PWPID).style.display = 'block';
   // window.scrollTo(10, 10); 
   
}

function hidePWPPopUp(PWPID) {
    document.getElementById('divPWPPopUP' + PWPID ).style.display = 'none';
   /* dimOff();*/
}
/*
function dimOff() {
   
    document.getElementById("darkLayer").style.display = "none";
}
function dimOn() {
    document.getElementById("darkLayer").style.width = pageWidth();
    document.getElementById("darkLayer").style.height = pageHeight();
    document.getElementById("darkLayer").style.display = "block";
}
function pageWidth() { return window.innerWidth != null ? window.innerWidth : document.body != null ? document.body.clientWidth : null; }
function pageHeight() { return window.innerHeight != null ? window.innerHeight : document.body != null ? document.body.clientHeight : null; } 
*/

/*
function setSize(sizeID) {
    document.getElementById('ctl00_ContentPlaceHolder1_hidProductSize').value = sizeID;
}

function setColor(ProductColorID) {
    document.getElementById('ctl00_ContentPlaceHolder1_hidProductColor').value = ProductColorID;
}
*/
 
