function validarEmail(valor) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)){
		return true;
	} else {
		return false;
	}
}

function validarTelefono(valor) {
if( /^[0-9]{2,3}-? ?[0-9]{6,7}$/.test(valor)) {
 return true;
	} else {
		return false;
	}
}

function validar_contacto(){
	
	if (document.formulario.nombre.value.length == 0){
       document.formulario.nombre.focus();
	   document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Introduzca su Nombre";
       return false;
    } 
	
	if (document.formulario.direccion.value.length == 0){
       document.formulario.direccion.focus();
	   document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Introduzca una direcci&oacute;n de contacto";
       return false;
    } 
	
	if (document.formulario.localidad.value.length == 0){
       document.formulario.localidad.focus();
	   document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Introduzca su localidad para el contacto";
       return false;
    } 
	
	if (document.formulario.provincia.value.length == 0){
       document.formulario.provincia.focus();
	   document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Introduzca su provincia para el contacto";
       return false;
    } 
	
	if(validarEmail(document.formulario.email.value) == false){
		document.formulario.email.focus();
		document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Introduzca un E-mail de contacto v&aacute;lido";
		return false;
	}
	
	if(validarTelefono(document.formulario.telefono.value) == false ){
       document.formulario.telefono.focus();
	   document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Introduzca un tel&eacute;fono de contacto valido (Ej.986250250)";
       return false;
    }
	
	if (document.formulario.mensaje.value.length == 0){
       document.formulario.mensaje.focus();
	   document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Introduzca su mensaje";
       return false;
    }
	
	document.formulario.submit();
}

function borrar_contacto(){
	
	document.formulario.nombre.value = "";
	document.formulario.direccion.value = "";
	document.formulario.localidad.value = "";
	document.formulario.provincia.value = "";
	document.formulario.email.value = "";
	document.formulario.telefono.value = "";
	document.formulario.mensaje.value = "";
      
	document.getElementById("confirmacion").style.display = "none";
	document.getElementById("confirmacion").innerHTML = "";
}


