function permitirSoloNumeros(evt) {
  // NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57  
  var key = nav4 ? evt.which : evt.keyCode;  
  return (key <= 13 || (key >= 48 && key <= 57));       
}
function validarFormulario() {
  document.formContacto.nombre.value = trim(document.formContacto.nombre.value);
  document.formContacto.emailcontacto.value = trim(document.formContacto.emailcontacto.value);
  var ok = true;
  var error = "";
  if (document.formContacto.nombre.value == "") {
    ok = false;
    error = "Introduce el nombre.";
  }
  else {
    if (document.formContacto.emailcontacto.value == "" && document.formContacto.telefono.value == "") {
      ok = false;
      error = "Introduce un mail ó teléfono.";
    }
    else {
      if (document.formContacto.emailcontacto.value != "") {
        ok = validarMail(document.formContacto.emailcontacto.value);
        if (!ok) error = "Introduce un mail válido.";
      }
    }
  }
  if (error) {
    document.getElementById("errorobligatorio").innerHTML = error;
    document.getElementById("errorobligatorio").style.display = "block";
  }
  else {
    document.getElementById("errorobligatorio").innerHTML = "";
    document.getElementById("errorobligatorio").style.display = "none";    
  }
  return ok;
}
