function aprifoto(foto)
	{
	img = new Image;
	img.src = foto;
	html = '<html>\n<head>\n<title>Th&uuml;ga Italia - s.r.l.</title>\n</head>\n<body bgcolor="27435D" leftmargin="5" topmargin="5" marginwidth="5" marginheight="5">\n<div align="center"><img src="' + foto + '" border=0 name=immagine onLoad="window.resizeTo(document.immagine.width+20,document.immagine.height+60)"></div>\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()
	};
