// Popup Zoom Immagine
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<html>\n<head>\n<title>ZoomImmagine</title>\n</head>\n<body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0>\n<center><img src="'+chemin+'" border=0 name=imageTest onload="window.resizeTo(document.imageTest.width+16,document.imageTest.height+65)"></center>\n</body>\n</html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
};