function afficheMaxi(chemin){
	i1 = new Image;
	i1.src = chemin;
	html = '<html><head>';
	html = html + '<title>Circuit Lédenon</title><meta http-equiv="imagetoolbar" content="no"></head>';
	html = html + '<body onmousedown="self.close()" topmargin="1" leftmargin="1" marginwidth="1" marginheight="1">';
	html = html + '<img src="'+chemin+'" alt="Circuit Lédenon" name="lenom" onLoad="window.resizeTo(document.lenom.width+32,document.lenom.height+53)"><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()
}