// JavaScript Document

function conseil(){
    var xhr=null;
 
	   if (window.XMLHttpRequest) 
	   { xhr = new XMLHttpRequest(); }
    else if (window.ActiveXObject) 
    { xhr =new ActiveXObject('Microsoft.XMLHTTP');}
	
    xhr.open('post',"scripts/catalogueBis.php", false);
    xhr.send(null);
    document.getElementById('cons').innerHTML=xhr.responseText;
	   setTimeout("conseil()",5000);
      
}

