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

