function ajax(id) {
  my_ajax(document.getElementById('touslescodes'), 'http://www.code-reduction.mobi/code-reduction.mobi/touslescodes.php?m_id=' + id, document.getElementById('touslescodes'));

}

function my_ajax(id,url,info) {
 
  info.style.display = 'block';
 
  if(window.XMLHttpRequest) {
   xhr_object = new XMLHttpRequest();
   } else {
  if (window.ActiveXObject) {
   xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
   }
  }
  
  xhr_object.open("GET", url, true);
  xhr_object.onreadystatechange = function(){
   
  if ( xhr_object.readyState == 1 )
  { 
   info.innerHTML = 'Chargement...';
  }  
  if ( xhr_object.readyState == 2 )
  { 
   info.innerHTML = 'verification...';
  }
  
  if ( xhr_object.readyState == 3 )
  { 
   info.innerHTML = 'En cours...';
  }
   
  if ( xhr_object.readyState == 4 )
  {
   // info.innerHTML = '';
   id.innerHTML = xhr_object.responseText;
  }
  }
  xhr_object.send(null);
}

