
function openWindow(ImageFile,Title,Width,Height)
{
   newWindow = window.open("","Picture","width="+Width+",height="+Height+",left=20,top=20,resizable=no,status=yes");
   newWindow.document.open();
   newWindow.document.write('<HTML><TITLE>'+Title+'</TITLE><BODY BGCOLOR="#FFFFFF" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" onBlur="self.close()">');
   newWindow.document.write('<IMG SRC="'+ImageFile+'" WIDTH="'+Width+'" HEIGHT="'+Height+'" ALT="'+Title+'">');
   newWindow.document.write('</BODY></HTML>');
   newWindow.document.close();
   newWindow.focus();
}
