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(validarEmail(document.formulario.email.value) == false){
		document.formulario.email.focus();
		document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Introduzca un E-mail 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 v&aacute;lido [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;
    }
	
	if (document.formulario.acepto.checked == false){
	   document.getElementById("confirmacion").style.display = "block";
	   document.getElementById("confirmacion").innerHTML = "Debe leer y aceptar las condiciones de uso";
       return false;
    }
	
	document.formulario.submit();
}

function borrar_contacto(){
	
	document.formulario.nombre.value = "";
	document.formulario.empresa.value = "";
	document.formulario.direccion.value = "";
	document.formulario.email.value = "";
	document.formulario.telefono.value = "";
	document.formulario.mensaje.value = "";
	document.formulario.acepto.checked = "";

      
	document.getElementById("confirmacion").style.display = "none";
	document.getElementById("confirmacion").innerHTML = "";
}


