<!--
function makeNewWindow(szImage, szTitle, cx, cy) 
{
 var newWindow;


 var iWidth;
 var iLength;
 var xOffset = 50;
 var yOffset = 30;
 
 iWidth = cx + xOffset;
 iLength = cy + yOffset;

 
 newWindow = window.open("","","toolbar=0, width="+iWidth+", height="+iLength+" ");

 newWindow.document.open();
 newWindow.document.write("<html>");
 newWindow.document.write("<title> "+szTitle+" </title>");
 newWindow.document.write("<body bgcolor=ffffff>");
 newWindow.document.write("<center> <img src="+szImage+"> </center>");
 newWindow.document.write("</body></html>");
 newWindow.document.close();
}
// -->

