// AJAX JavaScript Document
function affichePromo03_init(){
	
	var objetXHR = creationXHR();
	// Déclaration de la fonction de rappel
	function affichePromo03(){
		
		if(objetXHR.readyState == 4){
			if(objetXHR.status == 200){
				var resultat = objetXHR.responseText;
				
				// Le résultat sera à insérer dans la page html
				
				document.getElementById("promo03").innerHTML = resultat;
				
			}else{
				alert("Erreur HTTP N°"+objetXHR.status);
			}
		}
	}
	// Traitement Asynchrone GET
	// Désignation de la fonction de rappel
	objetXHR.onreadystatechange = affichePromo03;
	objetXHR.open("get", "inc_template/affichePromo03.php", true);
	// envoie de la requête
	objetXHR.send(null);
}