function afficheVignette(cheminVignette,cheminMaxi)
	{
	document.write('<A HREF="javascript:afficheMaxi(\''+cheminMaxi+'\')"><IMG SRC="'+cheminVignette+'" HSPACE=0 VSPACE=0 BORDER=1 ALT="Clicca qui per ingrandire la foto" style="border: 1px groove silver; margin: 2px;" ></A>');
	}
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>ZOCCHI - IMPIANTI MATERIE PLASTICHE</TITLE>\n</HEAD>\n<body leftmargin="0" topmargin="5" marginwidth="0" style="margin-bottom:5px;">\n<CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest style="border: 2px groove white;" onLoad="window.moveTo(100,100);window.resizeTo(document.imageTest.width+48,document.imageTest.height+85)"></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
