function display(myimage) {
 var html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' +
 '<html>' +
  '<body style="margin: 0px;">' +
  '<img id="the_image" src="' + 
	myimage +
  '" onload="window.resizeTo((document.getElementById(\'the_image\').width), (document.getElementById(\'the_image\').height + 60))">' +
  "</body></html>";
 
 var popup = window.open ('','image','toolbar=0,location=no,directories=0,menuBar=0,scrollbars=0,resizable=1, width=300,height=300');
-popup.moveTo(0,0);
 popup.document.open();
 popup.document.write(html);
 popup.document.close();
 return;
 }