function news()
{
	var obj = document.getElementById("actuDiv");
	obj.innerHTML = "<br />";
	var indexFin=0;
	var temp="";
	var newsArray = new Array();
	if(window.XMLHttpRequest) // FIREFOX
		xhr_object = new XMLHttpRequest();
	else if(window.ActiveXObject) // IE
		xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
	else
		return(false);
	xhr_object.open("GET", "news.txt", false);
	xhr_object.send(null);
	if(xhr_object.readyState == 4){ 
		var contenu = xhr_object.responseText;
		while(indexFin != -1){
			indexFin=contenu.indexOf("\n");
			newsArray.push(contenu.substring(0,indexFin));
			contenu = contenu.substr(indexFin+1);
		}
		newsArray.reverse();
		while(newsArray){
			temp=newsArray.pop();
			if(temp.charAt(0)!="#")
				obj.innerHTML += "<p class=\"sous-titre\">"+temp.substring(0,temp.indexOf("%"))+"</p><p class=\"corps\">"+temp.substring(temp.indexOf("%")+1)+"</p>";
		}
	}
}