function afficheVignette(cheminVignette,cheminMaxi)
	{
	document.write('<a href="javascript:afficheMaxi(\''+cheminMaxi+'\')"><img src="'+cheminVignette+'"width="180" height="135" hspace="0" vspace="0" border="0" alt="Clicca qui per ingrandire la foto"></a>');
	}
	
function testo(testo)
	{document.write('<a href="javascript:testo(\''+testo+'\')">testo</a>');}	
		
function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<html>\<head>\<title>Porcigliano - ' +chemin+ '</title>\</head>\<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">\<img src="'+chemin+'" border="0" name=imageTest onLoad="window.resizeTo(document.imageTest.width+35,document.imageTest.height+55)" align="left">\</body>\</html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=yes,resizable=yes');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};