<!--
  	function openNewUrl(URL) {
		window.open(URL,'NuovaFinestra');
		//return apri;		
	}
	function openPopUp(URL, win, dim) {
		window.open(URL,'NuovaFinestra',dim);
		//return apri;		
	}
		
		
	function openpx(img){
		foto1= new Image();
		foto1.src=(img);
		Controlla(img);
	}

	function Controlla(img){
		if((foto1.width!=0)&&(foto1.height!=0)){
			viewFoto(img);
		}
		else{
			funzione="Controlla('"+img+"')";
			intervallo=setTimeout(funzione,10);
		}
	}

	function viewFoto(img){
		largh=foto1.width;
		altez=foto1.height; 
	    stringa="width="+largh+",height="+altez+",scrollbars=no";	
		var txt1 = "<html xmlns='http://www.w3.org/1999/xhtml' lang='it'><head><title>Zoppola - Foto Gallery</title></head>" +    
		"<BODY style='margin:0;padding:0;'>" +
		"<img src="+img+" width="+largh+ " height="+altez+ " style='border:0' /></body></html>";
		finestra = window.open("","picture",stringa); 
		finestra.document.write(txt1);
	}
-->

