
		function apriFoto(largo,alto,path){
		var rightPath, finalString;
//------------------------stringa al contrario--------------------------		
		var contrary = "";
		var caratteri = path.length - 1;
		for(i=caratteri;i>=0;i--){
			contrary = contrary + path.charAt(i);
		}
//----------------------------------------------------------------------
//----------------------taglio stringa necessaria-----------------------		
		var cutString = contrary.substr(0,25);
//		alert(cutString);
//----------------------------------------------------------------------
//------------------------raddrizzamento stringa------------------------
		var finalString = "";
		var caratteri2 = cutString.length - 1;
		for(a=caratteri2;a>=0;a--){
			finalString = finalString + cutString.charAt(a);
		}
//		alert(finalString);
//----------------------------------------------------------------------		
		var rightPath = "";
			rightPath += "../"
			rightPath += finalString.substr(0,19);
			rightPath += "big";
			rightPath += finalString.substr(19,6);
//			alert(rightPath);

			if (window.finestra){window.finestra.close()}
			finestra=window.open('fotoGrande.htm',"finestra","location=no,toolbar=no,menubar=no,scrollbar=no,status=no,width="+largo+",height="+alto+",resizable=no");
			
			html="<HTML><HEAD><TITLE>Zoom Dettaglio</TITLE><LINK href='../css/style.css' rel='stylesheet' type='text/css'></HEAD>";
			html+="<BODY leftmargin='0' topmargin='0'><IMG src='" + rightPath + "' width='" + largo + "' height='" + alto +"'>";
			html+="<DIV id='chiudiPopOff' onClick='window.close()' onMouseOver='this.id=\"chiudiPopOn\"' onMouseOut='this.id=\"chiudiPopOff\"'>chiudi</DIV></BODY></HTML>";
			
			window.finestra.document.write (html);
			window.finestra.moveTo(screen.availWidth-largo-12, screen.availHeight-alto-30);
			window.finestra.focus();
		}