function afficheConnexion_init(pseudo, pass){
	
		var objetXHR_connexion = creationXHR();
		// Déclaration de la fonction de rappel
		function afficheConnexion(){
			
			document.getElementById("connexion_wait").innerHTML = "<div align='center' style='line-height:20px; height:20px;'><img src='../../imgs/wait_FFF.gif' width='16' height='16' /></div>";
			document.getElementById("connexion_ajax").innerHTML = "";
			if(objetXHR_connexion.readyState == 4){
				
				if(objetXHR_connexion.status == 200){
					
					var resultat = objetXHR_connexion.responseText;									
					//alert("-"+resultat+"-");
					// Le résultat sera à insérer dans la page html
					document.getElementById("connexion_wait").innerHTML = "";
					document.getElementById("aide_connexion").innerHTML = "";
					if(resultat == 1){
						resultat = '<span style="font-size:10px; font-family:Verdana, Geneva, sans-serif; color:#FFF">Vous etes bien connecté a Chtivie !</span>';
						window.parent.location.href="http://www.chtivie.fr/index.php";
					}else{
						resultat = '<span style="font-size:10px; font-family:Verdana, Geneva, sans-serif; color:#FFF">Votre login et/ou mot de passe sont incorrects<br><a href="login.php" style="color:#FFF;">Recommencer</a></span>';
					}
					
					document.getElementById("connexion_ajax").innerHTML =resultat;					
					
					return false;
					
				}else{
					
					alert("Erreur HTTP N°"+objetXHR_connexion.status);
					return false;
					
				}
			}else{
				return false;
			}
			
		}
		// Traitement Asynchrone GET
		// Désignation de la fonction de rappel
		objetXHR_connexion.onreadystatechange = afficheConnexion;
		objetXHR_connexion.open("get", "connexion.php?pass="+pass+"&pseudo="+pseudo, true);
		// envoie de la requête
		objetXHR_connexion.send(null);
}