
function Zoom(NomeElemento,Destinazione,UrlFile){
	
//	document.images[Destinazione].src='ICONE/loading/7.gif';
	
	if ( document.getElementById("fotografia_selezionata") != null ){
	
		nome_elemento_evidenziato = document.getElementById("fotografia_selezionata").value ;
		nome_elemento_da_evidenziare = NomeElemento ;
		
		if ( nome_elemento_evidenziato != "" ){
		
			document.getElementById(nome_elemento_evidenziato).style.color = "#000000";
			document.getElementById(nome_elemento_evidenziato).style.textDecoration = "none";
		
		}
			
		document.getElementById("fotografia_selezionata").value = NomeElemento ;
		
		document.getElementById(nome_elemento_da_evidenziare).style.color = "#BFBEC3";
		document.getElementById(nome_elemento_da_evidenziare).style.textDecoration = "underline";
		document.getElementById(nome_elemento_da_evidenziare).focus();
		
		document.images[Destinazione].src = UrlFile;
				
	}

}
