function ira(donde){
	window.location.href=donde;
}

function divisiones(id){
	if(document.getElementById(id).style.display == 'none')
	  document.getElementById(id).style.display = 'block';
	else
	  document.getElementById(id).style.display = 'none';
}


function verhabitaciones(id){
	llegada=document.getElementById("llegada").value;
	salida=document.getElementById("salida").value;
	adultos=document.getElementById("adultos").value;
	ninios=document.getElementById("ninios").value;
	rooms=document.getElementById("rooms").value;
	dir="inc/buscahab.php?id="+id+"&ing="+llegada+"&sal="+salida+"&adult="+adultos+"&ninios="+ninios+"&rooms="+rooms;
	document.getElementById("resulthab").innerHTML="<center><br><br><img src='imgs/loading2.gif' width='30'><br><br>Buscando... por favor espere<br><br></center>";
	new Ajax.Updater("resulthab", dir)
}

function buscarhabitaciones(){
	var params = Form.serialize($('frmbusca2'));
	dir="inc/buscahab2.php";
	document.getElementById("resultbusca").innerHTML="<center><br><br><img src='imgs/loading2.gif' width='30'><br><br>Buscando... por favor espere<br><br></center>";
	new Ajax.Updater("resultbusca", dir, {asynchronous:true, parameters:params})
}
