function PopImg(img, titre)
{ // Ouvre une fenetre pop adaptee a la taille de l'image
	win = open("",'image','width=10,height=10,toolbar=no,scrollbars=no,resizable=yes');	
	win.document.write("<html><head><title>"+titre+"</title></head>");
	win.document.write("<script language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+50,document.images[0].height+110);window.focus();} else { setTimeout('check()',250) } }</script>");
	win.document.write("<body  bgcolor=\"#E7EAFE\" onload='checksize();this.focus()' onContextMenu='return false'>");
	win.document.write("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\"><tr><td align=\"right\" bgcolor=\"#99CCFF\"><a href=\"javascript:close()\"><b><font color=\"white\">FERMER</font></b></a></td></tr>");
	win.document.write("<tr><td align=\"center\" bgcolor=\"#E7EAFE\">");
	win.document.write("<center><img src='"+img+"' border=0\"></center>");
	win.document.write("</td></tr></table>");
	win.document.write("</body></html>");
	win.document.close();
}


 function OuvrirPopup(page,nom,option) {  
 window.open(page,nom,option);  
 }
