function fotoTH(cheminVignette,cheminMaxi)
	{
	document.write('<A HREF="javascript:fotoGR(\''+cheminMaxi+'\')"><img alt="" SRC="'+cheminVignette+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Clicca qui per ingrandire"></A>');
	}
function fotoGR(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>P R O A P - Estudos e Projectos de Arquitectura Paisagista, Lda</TITLE>\n</HEAD>\n<BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\n<CENTER><img alt="" SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','top=100,left=100,toolbar=0,status=no,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};