
		function envia(){
			var mailcorrecto = "";
			mailcorrecto = /^[A-Za-z0-9][\w-.]+@[A-Za-z0-9]([\w-.]+[A-Za-z0-9]\.)+([A-Za-z]){2,4}$/i;
			var checkOK = "ABCDEFGHIJKLMNÑOPQRSTUVWXYZÁÉÍÓÚ" + "abcdefghijklmnñopqrstuvwxyzáéíóú ";
			var checkStr = document.getElementById("Nombre").value
			var allValid = true;
			for (i = 0; i < checkStr.length; i++){
				ch = checkStr.charAt(i);
				for (j = 0; j < checkOK.length; j++)
					if (ch == checkOK.charAt(j))
						break;
					if (j == checkOK.length) {
						allValid = false;
						break;
					}
			}
	 
			if ((document.getElementById("Nombre").value == "") || (document.getElementById("Nombre").value.replace(/\s/g, "") == "")){
				alert("Debes ingresar tu nombre.");
				document.getElementById("Nombre").focus();
				return false;
			}
 
			var checkOK = "ABCDEFGHIJKLMNÑOPQRSTUVWXYZÁÉÍÓÚ" + "abcdefghijklmnñopqrstuvwxyzáéíóú ";
			var checkStr = document.getElementById("Nombre").value;
			var allValid = true;
			for (i = 0; i < checkStr.length; i++) {
				ch = checkStr.charAt(i);
				for (j = 0; j < checkOK.length; j++)
					if (ch == checkOK.charAt(j))
						break;
					if (j == checkOK.length) {
						allValid = false;
					break;
					}
			}
 
			if (!allValid) {
				alert("Escribe sólo letras en el campo de Nombre.");
				document.getElementById("Nombre").focus();
				return (false);
			}
 
			if (!mailcorrecto.test(document.getElementById("Email").value)){
				 alert("Debes ingresar un correo correcto.");
				 document.getElementById("Email").focus();
				 return false;
			}
 
			if ((document.getElementById("Asunto").value == "") || (document.getElementById("Asunto").value.replace(/\s/g, "") == "")){
				alert("Debes indicar el Asunto del mensaje.");
				document.getElementById("Asunto").focus();
				return false;
			}
 
			var checkStr = document.getElementById("Asunto").value;
			var allValid = true;
			for (i = 0; i < checkStr.length; i++) {
				ch = checkStr.charAt(i);
				for (j = 0; j < checkOK.length; j++)
					if (ch == checkOK.charAt(j))
						break;
					if (j == checkOK.length) {
						allValid = false;
						break;
					}
			}
			 
			if (!allValid) {
				alert("Escribe solo letras en el campo de Asunto.");
				document.getElementById("Asunto").focus();
				return (false);
			}
 
 			if ((document.getElementById("Mensaje").value == "") || (document.getElementById("Mensaje").value.replace(/\s/g, "") == "")){
				alert("Debes introducir tu mensaje.");
				document.getElementById("Mensaje").focus();
				return false;
			}
			return true;
		} 
