<!--
imgName = null;
imgWidth = null;
imgHeight = null;
function picWindow(imgName, imgWidth, imgHeight)
{
if (imgName != null) 
        {
                   if (imgHeight == null) imgHeight = 500;
                   if (imgWidth == null) imgWidth = 360;
        temp = "toolbar=no,width=" + (imgWidth + 40) + ",height=" + (imgHeight + 70);
        msgWindow = window.open("","ImageViewer",temp);
        msgWindow.document.open('text/html');
        msgWindow.document.writeln('<HTML><TITLE>Supercomfort.com</TITLE><BODY BGCOLOR="#000000" >');
        msgWindow.document.writeln('<CENTER><IMG SRC="http://www.supercomfort.com/img/lg/' + imgName + '" WIDTH=' + imgWidth + ' HEIGHT =' + imgHeight + '"><BR><BR>');
        msgWindow.document.writeln('<FORM><INPUT TYPE="BUTTON" VALUE="CLOSE " onClick="window.close()"></FORM>');
        msgWindow.document.writeln('</BODY></HTML>');
        msgWindow.document.close();
                   }
}
//-->
