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 onload="window.resizeTo(document.monimage.width+33,document.monimage.height+80)" onmousedown="self.close()" bgcolor="#cccccc">';
html=html + '<img src="'+chemin+'" alt="'+title+'" name="monimage"><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()
}