function PopupImage(img) {
w=open("",'chargement','width=1,height=1,toolbar=no,scrollbars=no,resizable=yes');
w.document.open();
w.document.write("<html><head><title>"+img+"</title><style type='text/css'>#centre { text-align: center; position: absolute; left: 20px; top: 20px; } #fond { background-color: #f3f3f3; } </style>");
w.document.write("<SCR"+"IPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo([document.images[0].width+40],[document.images[0].height+60]); moveTo( ( screen.width-document.images[0].width)/2 , ( screen.height-document.images[0].height)/3); window.focus();} else { setTimeout('checksize()',250) } } </SC"+"RIPT>");
w.document.write("</head>");
w.document.write("<body onload='checksize()' onclick='window.close()' id='fond' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<div id='centre'>");
w.document.write("<img src='"+img+"' border=0 >");
w.document.write("</div>");
w.document.write("</body></html>");
w.document.close();
}
