function display(img) {
 var day = new Date();
 var id = day.getTime();
 var html = "<HTML><HEAD><TITLE>Photo</TITLE>" +
  "</HEAD><body leftmargin=0 topmargin=0 bottommargin=0 rightmargin=0 onLoad='window.resizeTo(document.image.width,document.image.height)'>" +
  "<a href=\"javascript:window.close();\"><img src='" + img + "' border=0 name='image'></a></center>" +
  "</BODY></HTML>";
 nw=window.open('',id,'width=650,height=488,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
 nw.document.write(html);
 nw.document.close();
 nw.document.focus();
 };
