function display(myimage) {
 html = "<HTML><HEAD><TITLE><shop:GetProduct Property='name' runat=server /></TITLE>" 
  + "<style type=text/css>body{font-size:12px;color: #333333;font-family: sans-serif;line-height:12px;margin:0;padding:0;}</style>"
  + "</HEAD><BODY> <CENTER>" 
  + "<a href='javascript:window.close();'><IMG SRC='" + myimage + "' BORDER=0 NAME=image " 
  + "onload='window.resizeTo(document.image.width,document.image.height+50)' /></a>"
  + "</CENTER>" 
  + "</BODY></HTML>";
 popup=
 window.open
  ('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
 popup.document.open();
 popup.document.write(html);
 popup.document.close()
 };
