﻿// Displays a popup window
function ShowPopUpImageWindow(imageName, imageWidth, imageHeight, imageAltText, websiteName) {
    var windowWidth = 820; // imageWidth + 20;
    var windowHeight = 660; // imageHeight + 60;
    window.open('imagePopUp.aspx?iw=' + imageWidth + '&ih=' + imageHeight + '&ialt=' + imageAltText + '&wsn=' + websiteName + '&in=' + imageName, null, 'left=300,top=10,height=' + windowHeight + ',width=' + windowWidth + ',status=no,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no');
}


function ShowPdfPopUpWindow(pdfName, productName, windowWidth, windowHeight) {
    window.open('PDFPopup.aspx?doc=' + pdfName + '&pn=' + productName, null, 'left=300,top=10,height=' + windowHeight + ',width=' + windowWidth + ',status=no,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no');
}
 
