//script per pop up foto bimbi
	function afficheVignette(cheminVignette,cheminMaxi)
			{
			document.write('<a href="javascript:afficheMaxi(\''+cheminMaxi+'\')"><img src="'+cheminVignette+'" alt="Clicca qui per ingrandire la foto"/></a>');
			}
	function afficheMaxi(chemin)
			{
			i1 = new Image;
			i1.src = chemin;
			html = '<html>\n<head>\n<title>Image</title>\n</head>\n<body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0>\n<center><img 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','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
			popupImage.document.open();
			popupImage.document.write(html);
			popupImage.document.close()
			}