<!-- ZOOM -->
function afficheVignette(cheminVignette,cheminMaxi)
	{
	document.write('<a href="javascript:afficheMaxi(\''+cheminMaxi+'\')"><img src="'+cheminVignette+'" border="0" vspace="2"></a>');
	}
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<html>\n<head>\n<title>Zoom</title>\n</head>\n<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">\n<center><img src="'+chemin+'" border="0" name="imageTest" onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></center>\n</body>\n</html>';
	popupImage = window.open('','_blank','toolbar="0",location="0",directories="0",menuBar="0",scrollbars="0",resizable="0",top="0",left="0"');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
<!-- ZOOM -->
