// SCRIPT PER GESTIONE MAPPA LOCALI
// Date: Maggio 2006
// Author: Emilio Di Donato
// Copyright: www.casertamusica.com

freezeStatus = false;
idAreaBloccata = 'nessuna';
idTestoBloccato = 'nessuna';

function Freeze(idArea){
	if(idArea==idAreaBloccata){
		//alert('Invoco unFreeze');
	   	unFreeze(); // Prima sblocca un eventuale Freeze attivo
		//Freeze(idArea); //... e quindi procedi al Freeze
	 }
	 else{
		//unFreeze(); // Prima sblocca un eventuale Freeze attivo
		idAreaBloccata = idArea;
		if(document.getElementById){
			document.getElementById("okButton").style.display = "block";
			idTestoBloccato = "testo" + idAreaBloccata;
			
		 	//document.getElementById("boxTesto").style.background = "#FDD65E";
			document.getElementById("boxTesto").style.display = "block";
			Show(idTestoBloccato); // NUOVO!
			document.getElementById("graphicsb0").style.display = "none";
			freezeStatus = true;
		}
		//alert('Freeze ' + idAreaBloccata);
	 }
}

function unFreeze(){
	freezeStatus = false;
	idTestoBloccato = "testo" + idAreaBloccata;
	Hide(idTestoBloccato);
	idAreaBloccata = 'nessuna';
	idTestoBloccato = 'nessuna';
	document.getElementById("okButton").style.display = "none";
	document.getElementById("boxTesto").style.display = "block";
	//document.getElementById("boxTesto").style.background = "#FFFFFF";
	document.getElementById("graphicsb0").style.display = "block";
	//alert('UnFreeze ' + flag +' ' + idAreaBloccata + ' ' + idTestoBloccato);

}
	
function Show(id){ // Utilizzata per visualizzare o nascondere il testo
	if (!freezeStatus){
		//alert('ShowHide ' + id);
		if(document.getElementById){
			var el=document.getElementById(id);
			el.style.display = "block";
		}
	}
}
function Hide(id){ // Utilizzata per visualizzare o nascondere il testo
	if (!freezeStatus){
		//alert('ShowHide ' + id);
		if(document.getElementById){
			var el=document.getElementById(id);
			el.style.display = "none";
		}
	}
}

