function auth()
{
    var http = createRequestObject();
	// On défini ce qu'on va faire quand on aura la réponse
	http.onreadystatechange = function(){
		// On ne fait quelque chose que si on a tout reçu et que le serveur est ok
		if (http.readyState == 4 && http.status == 200){
			var cell = document.getElementById('auth');
			var classCss='';
			var i=11;
			while (http.responseText.charAt(i)!='"')
			{
				classCss+=http.responseText.charAt(i);
				i++;
			}
			cell.className=classCss;
			cell.innerHTML = http.responseText;
		}
	}
	fullPath=window.location.href;
	path=fullPath.split("/");
	fullPath='';
	for (var i=3; i<path.length; i++)
	{
		fullPath+='/'+path[i];
	}
    http.open('GET', '/config/getAuth.php?PHP_SELF='+fullPath, !is_ie);
    http.send(null);
}

