function club_AjouterContact(idProfilContact,adressePage,messageOK,idAction)
{	
	var xhr = getXmlHttpRequest();
	xhr.open('POST', adressePage+'Ajax/AjouterContact.aspx', true);
	xhr.onreadystatechange = function() {
	    if (xhr.readyState == 4 && xhr.status == 200) {
	        var isOK = xhr.responseXML.documentElement.firstChild.childNodes[0].nodeValue;

	        if (isOK == "0") {
	            var Erreur = xhr.responseXML.documentElement.lastChild.childNodes[0].nodeValue;
	            show_popUp_alert(Erreur);
	        }
	        else {
	            show_popUp_alert(messageOK);

	        }
	    }
	}	
		
	xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
	xhr.send("idProfil="+idProfilContact + "&idAction=" + idAction);
	
}

