// JavaScript Document

function ValidaHotelesS(form)
{
		/*var er_email = /^(.+\@.+\..+)$/; 
		var er_tel=/^\d+$/;*/
		var band=true;

		if((form.Destinations.value=="" || form.Destinations.value==0) && (form.hotel.value=="" || form.hotel.value==":: Hotel Name ::") && (form.hotelPlan.value==0 || form.hotelPlan.value=="") && band)
		{ alert("Para buscar hoteles seleccione el destino o el tipo de plan o escriba el nombre del hotel");  band= false; }
		if(band)
		{
			xajax_BuscaHotel(xajax.getFormValues(document.getElementById('HotelsSearch')));	
		}
}



