function afficheMaxi(chemin, name) {

	i1 = new Image();
	i1.src = chemin;

	html = '<html><head><title>'+name+'</title></head><body leftmargin="0" marginwidth="0" topmargin="5" marginheight="0" bgcolor="#4D5B88"><table><tr><td align="center" valign="middle"><img src="'+chemin+'" border="0" name="imageTest" width="800"></td></tr></table></body></html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0, width=800, height=600');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
}
