
<!-- 
function jrPopupImage(img, titre) { 
// 20 juin 2007
affiche = window.open('','Image','width=400,height=400,toolbar=no,scrollbars=yes,resizable=yes');
affiche.document.write("<html><head><title>"+titre+"</title></head>"); 
affiche.document.write("<script type=\"text/javascript\">function jrAjustePopUp() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+40,document.images[0].height+95); window.focus();} else { setTimeout('jrAjustePopUp()',1000) } }</"+"script>");
affiche.document.write("<body onload='jrAjustePopUp()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>"); 
affiche.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>"); 
affiche.document.write("<img src='"+img+"' border='0'>");
affiche.document.write("</td></tr><tr><td height='10' background='images/imgcentrec.gif'>&nbsp;</td></tr><tr><td align='right'><font face='palatino' size='-1' color='#070c8c'><i>Fermer cette fen&ecirc;tre</i></font>&nbsp;<a href='javascript:self.close()'>");
affiche.document.write("<img src='images/fermer.gif' border='0' title='Fermer' width='13' height='14' align='center'></a>&nbsp;&nbsp;<br>&nbsp;<br>");
affiche.document.write("</td></tr></table></body></html>"); 
affiche.document.close(); 
} 
//--> 
