function titre()
{
    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){
			document.title = 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/getTitre.php?PHP_SELF='+fullPath, !is_ie);
    http.send(null);
}