function load_image(width,height,imagefile)	{
  image1 = new Image();
  image1.src = imagefile;
  newWindow=window.open(image1.src,'newwin','width='+width+',height='+height+',toolbar=no,resizable=1,scrollbars=yes'); 
  newWindow.document.write('<html><head><title>Click Picture to Close</title>\n');
  newWindow.document.write('<s'+'cript language="JavaScript">function Close_window(){window.opener=null;window.close();}</script></head><body bgcolor="#000000" marginheight=0 topmargin=0 leftmargin=0><TABLE WIDTH="100%" HEIGHT="100%"><TR><TD VALIGN="MIDDLE" ALIGN="CENTER"><a href="#" onclick="Close_window();" return true;"><img src="'+image1.src+'" alt="" border=0></a></TD></TR></TABLE></body></html>');
  newWindow.focus();
}