function popup(img,wi,hi) {
	var titre; titre="Photo";
	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("<style type=\"text/css\">\n");
	w.document.write("body { margin:0; padding:0; }");
	w.document.write("");
	w.document.write("</style>");
	w.document.write("<script type=\"text/javascript\">\n");
	w.document.write("\n var left,top;");
	w.document.write("\n function checkPosition() {");
	w.document.write("\n    var w, h, left, top;");
	w.document.write("\n    w = document.getElementById(\'photo').width;");
	w.document.write("\n    h = document.getElementById(\'photo').height;");
	w.document.write("\n    left = (window.screen.availWidth/2)-w/2;");
	w.document.write("\n    top  = (window.screen.availHeight/2)-h/2;");
	w.document.write("\n    window.moveTo(left, top);");
	w.document.write("\n    ");
	w.document.write("\n }");
	w.document.write("\n ");
	w.document.write("\n function checksize() { ");
	w.document.write("\n    var image = document.getElementById('photo');");
	w.document.write("\n    if (image.complete) {  window.resizeTo(image.width+12,image.height+30);");
	w.document.write("\n    window.focus();");
	w.document.write("\n }");
	w.document.write("\n else \n{ \nsetTimeout('check()',250) \n} \n}");
	w.document.write("\n window.onload = function() { checksize(); checkPosition(); }");
	w.document.write("\n window.onblur = function() { self.close(); }");
	w.document.write("\n ");
	w.document.write("\n </script>");
	w.document.write("\n<body>");
	w.document.write("\n<img id='photo' src='"+img+"'  alt=\"Photo\" /> ");
	w.document.write("\n<script>window.moveTo(left,top);</"+"SCRIPT>");
	w.document.write("\n</body></html>");
	w.document.close();
}
