function chargerActualite(fichier) {
    xmlhttpA=null;
  if (window.XMLHttpRequest) {
      xmlhttpA=new XMLHttpRequest()
  } else if (window.ActiveXObject) {
     xmlhttpA=new ActiveXObject("Microsoft.XMLHTTP")
  }
 if (xmlhttpA!=null)  {
     xmlhttpA.onreadystatechange=function () {
		  if (xmlhttpA.readyState==4) {
		       if (xmlhttpA.status==200) {
		           var xmlDocA=xmlhttpA.responseXML
		           var chaine='';
		           var i=0;
					while (i<xmlDocA.getElementsByTagName('actualite').length)
					  {
					  chaine+='<li class="withimage">'
					  if (xmlDocA.getElementsByTagName('salle')[i].firstChild!=null) chaine+='<img class="actuImage" alt="Affiche - '+xmlDocA.getElementsByTagName('salle')[i].firstChild.nodeValue+'" src="'+xmlDocA.getElementsByTagName('image')[i].firstChild.nodeValue+'" />'
					  if (xmlDocA.getElementsByTagName('date')[i].firstChild!=null) chaine+='<div class="actuDate">'+xmlDocA.getElementsByTagName('date')[i].firstChild.nodeValue+' - '+xmlDocA.getElementsByTagName('heure')[i].firstChild.nodeValue+'</div>';
					  if (xmlDocA.getElementsByTagName('salle')[i].firstChild!=null) chaine+='<div class="actuSalle">'+xmlDocA.getElementsByTagName('salle')[i].firstChild.nodeValue+'</div>';
					  if (xmlDocA.getElementsByTagName('adresse')[i].firstChild!=null) chaine+='<div class="actuAdresse">'+xmlDocA.getElementsByTagName('adresse')[i].firstChild.nodeValue+'</div>';
					  if (xmlDocA.getElementsByTagName('description')[i].firstChild!=null) chaine+='<div class="actuDescription">'+xmlDocA.getElementsByTagName('description')[i].firstChild.nodeValue+'</div>';
					  chaine+='</li>\r\n'
					  i++;
					  }
		           document.getElementById('corps').innerHTML=chaine;
		      } else {
		                alert("statusText: " + xmlhttp.statusText + "\nHTTP status code: " + xmlhttp.status);
		      }
		  }
     }
     xmlhttpA.open("GET", fichier, true);
     xmlhttpA.send(null);
  } else {
     alert("The XMLHttpRequest not supported");
  }
}
