// JavaScript Document
function display(myimage) 
{
	html = 	"<HTML><HEAD><TITLE>Photo</TITLE>" + 
			"</HEAD><BODY LEFTMARGIN=0 " +
  			"MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER>" +
  			"<IMG SRC='" + myimage + "' BORDER=0 NAME=image " +
  			"onload='window.resizeTo(666,document.image.height + 54)'></CENTER>" +
  			"</BODY></HTML>";
	
	var winl = (screen.width-666)/2;
	var wint = (screen.height-520)/2;
 
 	popup=window.open('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1, width=10, height=10, top=' + wint + ', left=' + winl);
 	popup.document.open();
 	popup.document.write(html);
 	popup.document.close()
};

