function xmlhttpPost(strURL) {
    var xmlHttpReq = false;
    var self = this;
    // Mozilla/Safari
    if (window.XMLHttpRequest) {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
		// Display waiting text
		sendingmessage();
    self.xmlHttpReq.open('POST', strURL, true);
    self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    self.xmlHttpReq.onreadystatechange = function() {
        if (self.xmlHttpReq.readyState == 4) {
            updatepage(self.xmlHttpReq.responseText);
        }
    }
    self.xmlHttpReq.send(getquerystring());
}

function getquerystring() {
    var form = document.forms['ajax-send-mail'];
    var direccion = form.direccion.value;
    var comentario = form.comentario.value;
    qstr = 'direccion=' + escape(direccion) + '&comentario=' + escape(comentario);
    return qstr;
}

function updatepage(str){
		if (str.substr(0,5) == 'ERROR') {
			document.getElementById("respuesta-ajax-send-mail").style.backgroundColor = '#ca1000';
		}
		document.getElementById("respuesta-ajax-send-mail").innerHTML = str;
    document.getElementById("respuesta-ajax-send-mail").style.visibility = 'visible';
    document.getElementById("direccion-enlace").value = '';
    document.getElementById("comentario-enlace").value = '';
}	

function sendingmessage(){
		document.getElementById("respuesta-ajax-send-mail").innerHTML = '<img src="/img/iconos/loader_participa_amarillo.gif" alt="" style="float:left;margin-right:5px;" />Enviando...';
}

function limpiar(){
		document.getElementById("respuesta-ajax-send-mail").innerHTML = '';
		document.getElementById("respuesta-ajax-send-mail").style.visibility = 'hidden';
}	