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 name="image" src="' + 
	myimage +
  '" onload="window.resizeTo(document.image.width,document.image.height)">' +
  "</body></html>";
 
 var popup = window.open ('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1, width=300,height=300');
 popup.document.open();
 popup.document.write(html);
 popup.document.close();
 return;
 }