//<!--
function afficheMaxi(chemin)
{
i1 = new Image;
i1.src = chemin;
html = '<HTML>\n<HEAD>\n<TITLE>Mastra SRL</TITLE>\n</HEAD>\n'+
'<STYLE TYPE="text/css">#cache { position:absolute; top:200px; z-index:10; visibility:hidden;}</STYLE>'+
'<DIV ID="cache"><center><b>Attendere...caricamento in corso</b><br><IMG BORDER="0" SRC="images/gallery/down.gif"><br>'+
'</center></DIV>'+
'<SCRIPT LANGUAGE="JavaScript">\n'+
'var nava = (document.layers);\n'+
'var dom = (document.getElementById);\n'+
'var iex = (document.all);\n'+
'if (nava) { cach = document.cache}\n'+
'else if (dom) {cach = document.getElementById("cache").style}\n'+
'else if (iex) {cach = cache.style}\n'+
'largeur = screen.width;\n'+
'cach.left = Math.round((largeur/2)-250);\n'+
'cach.visibility = "visible";\n'+
'function cacheOff(){\n'+
'cach.visibility = "hidden";\n'+
'}\n'+
'</SCRIPT></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 onLoad="cacheOff()" onBlur="self.focus();">'+
'<P>\n<CENTER><TABLE BORDER="0"><tr><td><IMG SRC="images/gallery/'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+36,document.imageTest.height+36)">\n'+
'</td><td><IMG src="images/gallery/chiudi.gif" border="0" style="cursor:hand" onclick="self.close()" width="15" height="15"><br><br><IMG src="images/gallery/stampa.gif" border="0" style="cursor:hand" onclick="self.close();self.print();" width="16" height="14"></td></tr></table></CENTER>\n'+
'<P><P>';
	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()
	};
//-->
