var READY_STATE_COMPLETE=4;
var peticion_http = null;
 
function inicializa_xhr() {
  if (window.XMLHttpRequest) {
    return new XMLHttpRequest(); 
  } else if (window.ActiveXObject) {
    return new ActiveXObject("Microsoft.XMLHTTP"); 
  } 
}
 
 
function comprobar() {
var texto="promo"	
  peticion_http = inicializa_xhr();
  if(peticion_http) {
    peticion_http.onreadystatechange = procesaRespuesta;
    peticion_http.open("POST", "respuesta_clics.php", true);
    peticion_http.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    peticion_http.send("texto="+encodeURIComponent(texto)+"&nocache="+Math.random());
  }
}
 
function procesaRespuesta() {
  if(peticion_http.readyState == READY_STATE_COMPLETE) {
    if (peticion_http.status == 200) {
		
      //var clics = document.getElementById("login").value;
      var documento_xml = peticion_http.responseXML;
	 var num_clics = documento_xml.getElementsByTagName("clics")[0].firstChild.nodeValue;
	 // alert (num_clics);
 
   //   var disponible = raiz.getElementsByTagName("disponible")[0].firstChild.nodeValue;

    }
  }
}
 


