function enviarMensajeContacto(forma) {
	var nombreFormulario = forma.id;
	var opt = {
		method: 'post',
		postBody:  Form.serialize(forma),
		onSuccess: function(t) {
			success = t.responseXML.getElementsByTagName('success')[0].firstChild.data;
			if (success != "1" ) {
				alert("Hubo un error al enviar el mensaje. Por intente de nuevo en un momento.");
				$(nombreFormulario + "_testigoEnviandoMensaje").hide();
			} else {
				alert("Hemos recibido su solicitud. Pr\u00F3ximamente recibir\u00E1 noticias nuestras.");
				$(nombreFormulario + "_testigoEnviandoMensaje").hide();
				forma.disable();
			}
		},
		on404: function(t) {
			alert('Error 404: location "' + t.statusText + '" was not found.');
		},
		onFailure: function(t) {
			alert('Error ' + t.status + ' -- ' + t.statusText);
		}
	}
	var envio = new Ajax.Request('/site/forms/consultas.php', opt);
}