function submitMe(){
//	
			var txt_nombre = document.getElementById('txt_nombre');
			var txt_apellido = document.getElementById('txt_apellido');
			var txt_email = document.getElementById('txt_email');
			var txt_telefono = document.getElementById('txt_telefono');
			var txt_ciudad = document.getElementById('txt_ciudad');
			var txt_pais = document.getElementById('txt_pais');	
			var txt_comentarios = document.getElementById('txt_comentarios');

			txt_nombre.style.borderColor = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_apellido.style.borderColor = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_email.style.borderColor = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_telefono.style.borderColor = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_ciudad.style.borderColor = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_pais.style.borderColor = "#7C7C7C #C3C3C3 #DDDDDD";
			txt_comentarios.style.borderColor = "#7C7C7C #C3C3C3 #DDDDDD";
//
			var err = false;
			var response="Debe completar todos los campos a continuación, Gracias.\n\n";
//
			if( txt_nombre.value == '' ) { 
				err = true;
				txt_nombre.style.borderColor = "red";
				txt_nombre.style.borderWidth = "1px";
				response+="Por favor ingrese su Nombre.\n";
			}
			//
			if( txt_apellido.value == '' ) { 
				err = true;
				txt_apellido.style.borderColor = "red";
				txt_apellido.style.borderWidth = "1px";
				response+="Por favor ingrese su Apellido.\n";
			}
			//
			if( txt_telefono.value == '' ) { 
				err = true;
				txt_telefono.style.borderColor = "red";
				txt_telefono.style.borderWidth = "1px";
				response+="Por favor ingrese su Teléfono.\n";
			}
			//
			if( txt_ciudad.value == '' ) { 
				err = true;
				txt_ciudad.style.borderColor = "red";
				txt_ciudad.style.borderWidth = "1px";
				response+="Por favor ingrese su Ciudad.\n";
			}
			//
			if( txt_pais.value == '' ) { 
				err = true;
				txt_pais.style.borderColor = "red";
				txt_pais.style.borderWidth = "1px";
				response+="Por favor ingrese su País.\n";
			}
			//
			if( txt_comentarios.value == '' ) { 
				err = true;
				txt_comentarios.style.borderColor = "red";
				txt_comentarios.style.borderWidth = "1px";
				response+="Por favor ingrese un Comentario.\n";
			}
			//
			if(isValidEmail(txt_email.value) == false) { 
				err = true;
				txt_email.style.borderColor = "red";
				txt_email.style.borderWidth = "1px";
				response+="Por favor ingrese una dirección e-mail valida.\n";

			}
			//
	if( err != true ) { 
		document.getElementById('formContacto').submit();
	} else {
		alert(response);
	}	
//*/
}
