//*******************************
//* Script generali i siti      *
//*******************************
	function PopSingoloHotelTiscover(idpagina) {
	    var GiornoArrivo=document.getElementById("m_oBooking_calArrivo").value;
	    var GiornoPartenza=document.getElementById("m_oBooking_calPartenza").value;
	    var Camere=document.getElementById("m_oBooking_txtCamere").value;
	    var Adulti=document.getElementById("m_oBooking_txtAdulti").value;
	    
	    var Bimbi01=document.getElementById("m_oBooking_txtBambini01").value;
	    var Bimbi02=document.getElementById("m_oBooking_txtBambini02").value;
	    var Bimbi03=document.getElementById("m_oBooking_txtBambini03").value;
	 
	    window.open('../popup/Tiscover.aspx?ID=' + idpagina + '&GiornoArrivo=' + GiornoArrivo + '&GiornoPartenza=' + GiornoPartenza + '&Camere=' + Camere + '&Adulti=' + Adulti + '&Bimbi01=' + Bimbi01 + '&Bimbi02=' + Bimbi02 + '&Bimbi03=' + Bimbi03,'EffeHotels','scrollbars=yes,resizable=no,width=900,height=700,status=no,location=no,toolbar=no');   
    }
    
	visibile = 1;
	
	function illumina(id)
	{
		old = document.getElementById("img_" + id).src;
		src_nuovo = old.substring(0, old.length - 4) + "_sel" + old.substring(old.length - 4);
		document.getElementById("img_" + id).src = src_nuovo;
	}

	function spegni(id)
	{
		old = document.getElementById("img_" + id).src;
		src_nuovo = old.substring(0, old.length - 8) + ".gif";
		document.getElementById("img_" + id).src = src_nuovo;
	}

	function ShowPage(numero)
	{
		try{
			document.getElementById("page_Descrizione_" + visibile).style.visibility = "hidden";
			document.getElementById("pager_" + visibile).style.fontWeight = "normal";
		}catch(e){}
		
		try{
			document.getElementById("page_Descrizione_" + numero).style.visibility = "visible";
			document.getElementById("pager_" + numero).style.fontWeight = "bold";
		}catch(e){}
		
		visibile = numero;
	}
	
	nascosto = "";
	
	function nascondi_layer(id)
	{
		if(document.getElementById(id) != null)
			document.getElementById(id).style.visibility = "hidden";
	}
	
	function visualizza_layer(id)
	{
		if(nascosto != id){
			document.getElementById(id).style.visibility = "visible";
		}
	}

	function PopGallery(path, num) {
		
		if(path == '')
			return;
			
		try
		{
			prova = popup
		}
		catch(e)
		{
			document.getElementById("m_imgGallery").src = path;
			
			temp = nascosto;
			nascosto = "layer_trasp_" + num;
			if(temp != ""){
				visualizza_layer(temp)
			}
			
			return;
		}
		
		window.open("../popup/gallery.aspx?path=" + path + "&ID=" + IDPagina ,'gallery','scrollbars=no,resizable=no,status=no,location=no,toolbar=no,width=400,height=437');
	}
	
	function pop_booking(link_booking)
	{
		window.open(link_booking ,'booking','scrollbars=no,resizable=no,status=no,location=no,toolbar=no,width=765,height=550');
	}

