<!--
//    <a href=".....  remplacer par : <a href="javascript:popupFoto('    et   ">    remplacer par :  ')">
function popupFoto(foto) {
  var screenWidth = window.screen.availWidth - 20;
  var screenHeight = window.screen.availHeight - 20;
  PopupWin = window.open('','Image','width=200,height=100,toolbar=no,scrollbars=yes,resizable=no,top=1,left=1');
  PopupWin.document.write("<html><head></head>"); 
  PopupWin.document.write("<script type=\"text/javascript\">function AdjustPopup() { if (document.images[0].complete) { window.resizeTo( Math.min((document.images[0].width + 25),'"+screenWidth+"'), Math.min((document.images[0].height + 90),'"+screenHeight+"')); window.focus();} else { setTimeout('AdjustPopup()',1000) } }</"+"script>");
  PopupWin.document.write("<body onload='AdjustPopup()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>"); 
  PopupWin.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>"); 
  PopupWin.document.write("<img src='"+foto+"' border='0' lowsrc='Chargement' alt='Chargement'>");
  PopupWin.document.write("</td></tr></table></body></html>"); 
  PopupWin.document.close(); 
}
 //-->

