// CARGA DESPLEGABLE CON OFERTAS DEPENDIENDO DEL HOTEL SELECCIONADO, POR DEFECTO, MARBELLA.


function DoLoad()
{ 
	
	if(idiomayformatocalendario=="es")
	{
	document.getElementById("selecc_hotel").text='Guadalpin en Marbella Centro';
	document.getElementById("selecc_hotel").value='MARBELLA';
	}
	
	if(idiomayformatocalendario=="en")
	{
	document.getElementById("selecc_hotel").text='Guadalpin in Marbella Center';
	document.getElementById("selecc_hotel").value='MARBELLA';
	}

	if(idiomayformatocalendario=="de")
	{
	document.getElementById("selecc_hotel").text='Guadalpin in Marbella Zentrum';
	document.getElementById("selecc_hotel").value='MARBELLA';
	}	

	
	
	
}


	
 

 		
 
 
  
 

function seleccionHotel(strHotel)
{	



				if(idiomayformatocalendario=="es")
				{
					strIdiomaPaginaReservas="esp";
				}
				
				if(idiomayformatocalendario=="en")
				{
					strIdiomaPaginaReservas="eng";
				}
			
				if(idiomayformatocalendario=="de")
				{
					strIdiomaPaginaReservas="eng";
				}	
			
				strHotel=strHotel.toUpperCase(); //PASAMOS EL HOTEL A MAYUSCULAS
			 
				if (strHotel == 'MARBELLA')
				{
					hotel_prefijo_reservas = '';		
					hotel_mejor_tarifa = 'marbella';	
				}
				
				if (strHotel == 'BANUS')
				{
					hotel_prefijo_reservas = 'banus-';
					hotel_mejor_tarifa = 'banus';	
				}
				
				if (strHotel == 'BYBLOS')
				{
					hotel_prefijo_reservas = 'byblos-';
					hotel_mejor_tarifa = 'byblos';	
				}
				
			 
			 var mes_seleccionado = document.getElementById("fechainiMesAnyo").value; 
			 
				if (mes_seleccionado=="NO IMPORTA") 
				{ 
				
					document.ListaFechas.action= "http://www.granhotelguadalpin.com/" +idiomayformatocalendario + "/best_available_rate_guarantee.cfm?idioma=" +idiomayformatocalendario + "&hotel=" + hotel_mejor_tarifa + "&origen=combo";
						document.ListaFechas.submit();	
				}
				else	
				{	 
					
					if (strHotel == '')
				{
					alert ("Seleccione un hotel - Please select a Hotel");	
				}
				else
				{
					document.ListaFechas.action= "http://www."+ hotel_prefijo_reservas +"guadalpin-reservas.com/reservas/bin/selecciontarifas.php?idioma=" +strIdiomaPaginaReservas;
						document.ListaFechas.submit();	
				}
				}		 
			}




