function display(myimage) {
 html = "<HTML><HEAD><TITLE>Photo</TITLE>" +
  "</HEAD>" +
  "<body style='margin-top:0;margin-right:0;margin-left:0' marginheight=0 marginwidth=0>" +
  "<IMG SRC='" + myimage + "' BORDER=0 NAME=image " +
  "onload='window.resizeTo(document.image.width+10,document.image.height+30)'>" +
  "</BODY></HTML>";
 popup=window.open('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=auto,resizable=1,top=50,left=50');
 popup.document.open();
 popup.document.write(html);
 popup.document.focus();
 popup.document.close()
 };