
//Valida el formulario de contacto
function validar_presupuesto() {
 //alert("Validando presupuesto");
  if (document.getElementById("fecha").value != "") {
    if (document.getElementById("personas").value != "") {
      if (document.getElementById("nombre").value != "") {
        if (ValidarEmail(document.getElementById("email").value)) {
          if (document.getElementById("idea").value != "") {

            document.getElementById("contacta").submit();

          } else {
            alert("Por favor, escribe tu idea para la celebracion");
            document.getElementById("idea").focus;
          }
        } else {
          alert("La direccion de correo : " + document.getElementById("email").value + "\nno es valida, introducela bien, por favor");
          document.getElementById("email").focus;
        }
      } else {
        alert("Por favor, por tu nombre y telefono");
        document.getElementById("nombre").focus;
      }
    } else {
      alert("Por favor, por el numero de personas");
        document.getElementById("personas").focus;
    }  
  } else {
    alert("Por favor, pon la fecha de celebracion");
    document.getElementById("fecha").focus;
  }
}

//Funcion que valida el email y devuelve true o false
function ValidarEmail(email){
 if( email.indexOf('@',0) <= 0  || email.indexOf(';',0) != -1
     || email.indexOf(' ',0) != -1 || email.indexOf('/',0) != -1
     || email.indexOf(';',0) != -1 || email.indexOf('<',0) != -1
     || email.indexOf('>',0) != -1 || email.indexOf('*',0) != -1
     || email.indexOf('|',0) != -1 || email.indexOf('`',0) != -1
     || email.indexOf('&',0) != -1 || email.indexOf('$',0) != -1
     || email.indexOf('!',0) != -1 || email.indexOf('"',0) != -1
     || email.indexOf(':',0) != -1 ) { 
  return false;
 } else {
  return true;
 }
}