function afficheMaxi(chemin,title){
i1=new Image;
i1.src=chemin;
html='<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
html=html + '<html><head><title>'+title+'</title><meta http-equiv="imagetoolbar" content="no" /></head>';
html=html + '<body onmousedown="self.close()" topmargin="1" leftmargin="1" marginwidth="1" marginheight="1" bgcolor="#cccccc">';
html=html + '<img src="'+chemin+'" alt="'+title+'" name="imageTest" onload="window.resizeTo(document.imageTest.width+33,document.imageTest.height+51)"/><div style="position:absolute;z-index:-1;left:0;top:0;">Chargement en cours...</div></body></html>';
popupImage=window.open('','_blank','width=180,height=20,toolbar=0,location=0,directories=0,menubar=0,scrollbars=1,resizable=1');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
}