// JavaScript Document

function validarcampos()
 { 
 	if (document.getElementById("Form_brochure").nombre.value == "" || document.getElementById("Form_brochure").nacionalidad.value == "")
	 {
		alert("Please fill the fields marked with *");
		return false	
	 }
	
	mail=document.getElementById("Form_brochure").email.value;
	
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(mail))
	  {return (true)}
	else 
	  {
		alert("Please ckeck the email.");
		return (false);
	  }
 }
 
 
function validarcamposenrol()
 { 
 	if (document.getElementById("Form_brochure").nombre.value == "" || 
		document.getElementById("Form_brochure").apellidos.value == "" ||
		document.getElementById("Form_brochure").direccion.value == "" ||
		document.getElementById("Form_brochure").ciudad.value == "" ||
		document.getElementById("Form_brochure").zip.value == "" ||
		document.getElementById("Form_brochure").pais.value == "" ||
		document.getElementById("Form_brochure").telefono.value == "" ||
		document.getElementById("Form_brochure").fecha_nacimiento.value == "" ||
		document.getElementById("Form_brochure").pasaporte.value == "" ||
		document.getElementById("Form_brochure").profesion.value == "" ||
		document.getElementById("Form_brochure").nacionalidad.value == "" ||
		document.getElementById("Form_brochure").email.value == "" ||
		document.getElementById("Form_brochure").sexo.value == "0" ||
		document.getElementById("Form_brochure").curso.value == "0")

		 {
			alert("Please fill the fields marked with *");
			return false	
		 }
		
		 mail=document.getElementById("Form_brochure").email.value;
	
		if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(mail))
		  {return (true)}
		else 
		  {
			alert("Please ckeck the email.");
			return (false);
		  }
 }
 
 
function mostrar_alojamiento()
{
	if(document.getElementById("Form_brochure").accommodation.value==0)
	 {	
		document.getElementById("alojamiento").style.visibility='hidden';
		document.getElementById("alojamiento").style.position='absolute'
	 }
	else
	 {
		document.getElementById("alojamiento").style.visibility='visible';
		document.getElementById("alojamiento").style.position='relative'
	 }

}


function validarcamposrecommend()
 { 
 	if (document.getElementById("Form_brochure").nombre.value == "")
	 {
		alert("Please fill the fields marked with *");
		return false	
	 }
	
	mail=document.getElementById("Form_brochure").email.value;
	
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(mail))
	  {return (true)}
	else 
	  {
		alert("Please ckeck the email.");
		return (false);
	  }
 }


