// fonction popupimage

function popupImageWindow(url) {
  window.open(url,'popupImageWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=600,height=300,screenX=150,screenY=150,top=150,left=150')
}

function PopupImage(img) {
        titre="Popup Image";
        w=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("<SCRIPT language=javascript>\n");
        w.document.write("function fermerxlapresdelai() { setTimeout(\"window.close()\",15000);}\n");
        w.document.write("function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+30); window.focus();} else { setTimeout('check()',250) } }\n"); 
        w.document.write("</"+"SCRIPT>\n");
        w.document.write("<BODY onload='checksize();fermerxlapresdelai()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+img+"' border=0>");
        w.document.write("");
        w.document.write("</BODY></HTML>"); 
        w.document.close();                                                                                                                   }

