function PopupImage(img,titre,w,h) { 
w=open("",'image','width='+w+',height='+h+',toolbar=no,scrollbars=no,resizable=no'); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
w.document.write("<BODY onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<IMG src='images/"+img+".jpg' alt=''>"); 
w.document.write("</BODY></HTML>"); 
w.document.close(); 
} 