function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<html>\n<head>\n<title>Image</title>\n<style>\nA.linkImage:link{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;color: #00008B;font-weight:normal;font-style:normal;text-decoration:none;}\nA.linkImage:visited{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;color: #00008B;font-weight:normal;font-style:normal;text-decoration:none;}\nA.linkImage:hover{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;color: #8B0000;font-weight:normal;font-style:normal;text-decoration:underline;cursor:pointer;}\nBODY{margin:1px;background-color:#DDEEFF;}\n</style>\n</head>\n<body>\n<div style="text-align:center;"><img src="'+chemin+'" border="1" name="imageTest" onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+70);"><br><br><a href="javascript:window.close();" class="linkImage">Chiudi</a></div>\n</body>\n</html>';
	popupImage = window.open('','view_foto','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,top=150,left=300');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.focus();
	popupImage.document.close()
	};
