// JavaScript Document


//Localización

function mostrarModal() {
document.getElementById("fondo_modal").style.display="block";
document.getElementById("modal").style.display="block";
}


function ocultarModal() {
document.getElementById("fondo_modal").style.display="none";
document.getElementById("modal").style.display="none";
}


//Contacto

function validar(){

	var nombre = document.getElementById("nombre");
	var mail = document.getElementById("mail");
	var mensaje = document.getElementById("mensaje");
	
  if (nombre.value == ""){
  alert("Escribe tu nombre en el formulario."); document.form_contacto.nombre.focus(); return false;
  } else if (mail.value == ""){
  alert("Tienes que escribir tu e-mail para poder seguir."); document.form_contacto.mail.focus(); return false;
  } else if (mensaje.value == ""){ 
  alert("No has escrito tu mensaje."); document.form_contacto.mensaje.focus();  return false;
  } else if (mail.value.indexOf('@', 0) == -1 || mail.value.indexOf('.', 0) == -1){ 
  alert("Tu email es incorrecto, vuelve a escribirlo."); document.form_contacto.mail.focus();  return false;
  } else {
  
  document.form_contacto.submit();
  }

}
