function afficheMaxi(chemin)
{
i1 = new Image;
i1.src = chemin;
html = '<HTML><HEAD><TITLE>Image</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 background="img/bgBas.gif"><table width="100%" border="0" cellpadding="5" cellspacing="0"><tr><td><IMG SRC="'+chemin+'" BORDER=1 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+24,document.imageTest.height+68)"></td></tr></table></BODY></HTML>';
popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
};