//window.addEvent('domready', function() {
//});
function statsdoc(numacces) {
//alert ("numacces="+numacces);
var myRequest = new Request({method: 'post', url: 'loginmembre.php'});
  myRequest.send("numacces="+numacces);
  myRequest.addEvent("onSuccess", function(reponse){
    });
}
function AfficheLegendeRequest(ordre) {
var myRequest = new Request({method: 'post', url: 'legendelogo.php'});
  myRequest.send("ordre="+ordre);
  myRequest.addEvent("onSuccess", function(reponse){
			$('legendelogo').set('html',reponse);
    });
}

