function procesar_hotel_avail_off(xml){
	document.getElementById('columna_central').innerHTML=xml;
}

function procesar_hotel_avail_on(xml){
	var aux_xml=xml.split('#~~~#Þ#Þ#~~~#');
	document.getElementById('capa_precios').innerHTML=aux_xml[0];
	document.getElementById('capa_precios').style.display='inline';
	document.getElementById('capa_informacion').style.display='none';
	document.getElementById('habitaciones_resultado').innerHTML=aux_xml[1];
	if(aux_xml[1]!='<div style="margin:5px auto; widht:300px;" ><div style="float:left; display:inline; margin-left:10px; margin-top:10px;" class="E-15-gris_oscuro-bold-Trebuchet">No se han encontrado habitaciones con los parametros establecidos.</div></div><div style="clear:both;"></div>')
		document.getElementById('boton_reservar').style.display='';	
	document.getElementById('habitaciones_resultado').style.display='inline';
}
