function popup(img,wi,hi) {
	var titre; titre="";
	w=window.open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>\n");
	w.document.write("\n <SCRIPT language='javascript'>\nvar left,top;");
	w.document.write("\n left=(window.screen.width/2)-" + wi + "/2; ");
	w.document.write("\n top = (window.screen.height/2)-" + hi + "/2; ");
	w.document.write("\nwindow.moveTo(left,top);</"+"SCRIPT>");
	w.document.write("<SCRIPT language='javascript'>\n");
	w.document.write("");
	w.document.write("");
	w.document.write("");
	w.document.write("");
	w.document.write("");
	w.document.write("function checksize()  \n{ ");
	w.document.write("\nif (document.images[0].complete) \n{  \nwindow.resizeTo(document.images[0].width+12,document.images[0].height+30);");
	w.document.write(" \nwindow.focus(); } ");
	w.document.write("\n else \n{ \nsetTimeout('check()',250) \n} \n}\n</"+"SCRIPT>");
	w.document.write("\n<BODY onload='checksize();window.moveTo(left,top);' leftMargin=\"0\" topMargin=\"0\" marginwidth=\"0\" marginheight=\"0\" ");
	w.document.write("onblur=\"self.close();\" >");
	w.document.write("\n<IMG src='"+img+"' border=\"0\" alt=\"Photo\"> ");
	w.document.write("\n<script>window.moveTo(left,top);</"+"SCRIPT>");
	w.document.write("\n</BODY></HTML>");
	w.document.close();
}
