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

			txt_nombre.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_comentario.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_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_comentario.value == '' ) { 
				err = true;
				txt_comentario.style.borderColor = "red";
				txt_comentario.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('contactform').submit();
	} else {
		alert(response);
	}	
//*/
}
