//******************************************************************************
// Fonction qui comptabilise les clics pour un lien en appelant un script php
//******************************************************************************
function compteClic(id)
{
  if(window.XMLHttpRequest)
    xhr_object = new XMLHttpRequest();
  else if(window.ActiveXObject)
    xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
  else
    return true;

  xhr_object.open("GET", 'ajax_clic.php?id=' + id, true);
  xhr_object.send(null);

  return true;
}
