﻿function openImg(URL, Title, winH, imgW, imgH) {
    var newwin;
    newwin = window.open('', '', 'width=' + imgW + ' , height=' + winH);
    newwin.document.write("<html><head><title>" + Title + "</title><link rel='stylesheet' type='text/css' href='/<%=IMG_THEME_DIR%>/styles/storemain.css' /></head>");
    newwin.document.write("<body>");
    newwin.document.write("<div align=center class=\"bodyclass\">");
    newwin.document.write("<img src=\"" + URL + "\" width=\"" + imgW + "\" height=\"" + imgH + "\"><br>");
    newwin.document.write("<a href=\"javascript:self.close();\">Close Window</A>");
    newwin.document.write("</div>");
    newwin.document.write("</body>");
    newwin.document.write("</html>");
    newwin.focus();
}

