function enviar_reserva(){
	var error_str="";
	if (document.form_reserva.reserva_nombre.value.length == 0) {
	       error_str+="Debe ingresar su nombre \n";
	} // del If

	if (document.form_reserva.reserva_mail.value.length == 0) {
	       error_str+="Debe ingresar su mail \n";
	} // del If

	if (document.form_reserva.reserva_mail.value != document.form_reserva.reserva_mailc.value) {
	       error_str+="Debe confirmar su email \n";
	} // del If
	if (parseInt(document.form_reserva.reserva_pais.selectedIndex) == 0) {
	       error_str+="Debe seleccionar su pais \n";
	} // del If
	if (document.form_reserva.reserva_pasaporte.value.length == 0) {
	       error_str+="Debe ingresar su numero de pasaporte \n";
	} // del If
	if (parseInt(document.form_reserva.reserva_cant_personas.selectedIndex) == 0) {
	       error_str+="Debe seleccionar la cantidad de personas \n";
	} // del If
	if (document.form_reserva.reserva_checkin.value.length == 0) {
	       error_str+="Debe ingresar la fecha de ingreso \n";
	} // del If
	if (document.form_reserva.reserva_checkout.value.length == 0) {
	       error_str+="Debe ingresar la fecha de salida \n";
	} // del If
	if (document.form_reserva.reserva_terminos.checked == false) {
	       error_str+="Debe aceptar los terminos y condiciones \n";
	} // del If
	if (error_str == '') {
		return(true);
	}else{
		alert(error_str);
		return(false);
	}//del if
}

