function comprova_contacta() {
	if(!valido(document.formulario.nombre.value)){
		alert("Debe introducir el nombre.");
	}else{
		if(!valido(document.formulario.apellidos.value)){
			alert("Debe introducir los apellidos.");
		}else{
			if(!valido(document.formulario.email.value)){
				alert("Debe introducir la dirección de correo electrónico.");
			}else{
				if(!isValidEmail(document.formulario.email.value)){
					alert("La dirección de correo es incorrecto.");
				}else{
					if(!valido(document.formulario.texto.value)){
						alert("Debe introducir el texto.");
					}else{
						if(document.formulario.acepto.checked==false ){
							alert("Debe aceptar el Aviso Legal de protección de datos ");
						}else{
						
						//Enviar
						document.formulario.submit();
						return false;
						}
					}
				}
			}
		}
	}
return false;	
}

function comprova_contacta_en() {
	if(!valido(document.formulario.nombre.value)){
		alert("The field Name is mandatory.");
	}else{
		if(!valido(document.formulario.apellidos.value)){
			alert("The field Surname is mandatory.");
		}else{
			if(!valido(document.formulario.email.value)){
				alert("The field E-Mail is mandatory.");
			}else{
				if(!isValidEmail(document.formulario.email.value)){
					alert("The field E-Mail is incorrect.");
				}else{
					if(!valido(document.formulario.texto.value)){
						alert("The field Further comments is incorrect.");
					}else{
						if(document.formulario.acepto.checked==false ){
							alert("You must accept the Data protection policy.");
						}else{
						
						//Enviar
						document.formulario.submit();
						return false;
						}
					}
				}
			}
		}
	}
return false;	
}
