// JavaScript Document
function popupimage(img) {
var top=(screen.height - 450)/2;
var left=(screen.width - 600)/2;
w=open("photos",'image','top='+top+',left='+left+',width=600,height=450,toolbar=no,scrollbars=no,resizable=yes');	
w.document.write('<html><head><title>Zoom Photo</title><style type="text/css">html { margin:0px; padding:0px; } body { margin:0px; padding:0px; }</style>');
w.document.write('<sc'+'ript language="java'+'script"> function checksize() { if (document.images["img"].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+58); window.focus();} else { setTimeout("checksize()",250) } }</'+'script></head>');
w.document.write('<body onload="checksize()"><a href="javascript:window.close();" title="Fermer la fenetre"><img src="http://www.claudenelaton.com/img/rea/mini_'+img+'" border="0" name="img" alt="Fermer la fenetre" /></a>');
w.document.write('</body></html>');
w.document.close();
}
