function display(myimage,mytitle) {
	if(mytitle==undefined) {mytitle = "Photo"};
 html = "<html><head><title>" + mytitle + "</title></head><body style='background:#fff; width:100%; margin:0px auto;'>" +
  "<div style='top:0; left:0;'>"+
  "<img src='" + myimage + "' border=0 name='image' onload='window.resizeTo(document.image.width,document.image.height+65)' />" +
  "</div></body></html>";
 popup=window.open('','image','toolbar=0,directories=0,menuBar=0,scrollbars=0,resizable=0,status=1');
 popup.document.open();
 popup.document.write(html);
 popup.document.close();
 popup.focus();
 //popup.moveTo(Mouse.x,Mouse.y);
 
 };

