function loadClt(id)
{
    var clt_object = null;
		clt_object = new XHRConnection();
		clt_object.appendData("clt", id);
		clt_object.sendAndLoad("/includes/showClassement.php", "POST", function(obj){ document.getElementById('clt'+id).innerHTML=obj.responseText;});
}
