function afficheMaxi(chemin)
{
i1 = new Image();
i1.src = chemin;

html = '<HTML><HEAD><TITLE>Zoom image</TITLE><style type="text/css"><!--body {font-family: Verdana, Arial, Helvetica, sans-serif; font-size:7pt;} a:link {color: #000000; text-decoration:none;} a:visited {color: #000000; text-decoration:none;} a:hover {color: #FF971B; text-decoration:none;}--></style></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=5 MARGINHEIGHT=0 body bgcolor="#FFFFFF"><CENTER><a href="#" onclick="self.close();"><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+40,document.imageTest.height+80)" title="Fermer la fenêtre" alt="Fermer la fenêtre" style="margin-top:15px"></a></CENTER></body></HTML>';
popupImage = window.open('','_blank','toolbar=no,location=no,status=no,directories=no,menuBar=no,scrollbars=no,resizable=0, width=500, height=375, left=250, top=125');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
}
