function getMember(from){
	//alert(from);
	switch(from){
		case 0 : var login = document.getElementById("flogin"); break;
		case 1 : var login = document.getElementById("login"); break;
		case 2 : var login = document.getElementById("login"); break;
		default: var login = document.getElementById("login"); break;
	}
	//alert(login.value);
	
	if(login.value == ""){
		if(from == 0){
			document.getElementById("ajax_login").innerHTML = '<img src="images/icon/cross.png" alt="bad" />';
		}
		//alert('fuck');
	}
	else{
		var data = "login="+login.value+"&from="+from;
		//alert(data);
		//fonction ajax qui va chercher la liste des organisation pour le departement
		var co;
		if (window.XMLHttpRequest) co = new XMLHttpRequest();
		else if (window.ActiveXObject) co = new ActiveXObject('Microsoft.XMLHTTP');
		else{
			alert('JavaScript : votre navigateur est trop vieux !');
			return;
		}	
		co.open('POST','ajax/listemember.php?ajax',true);
		co.onreadystatechange = function(){
			
			if(co.readyState == 1){ }
			if (co.readyState == 4){
				if (document.getElementById){
						document.getElementById("ajax_login").innerHTML = co.responseText;
				}
			}
		}
		co.setRequestHeader('Content-type','application/x-www-form-urlencoded');
		co.send(data);
	}
	//nouveau_option=document.createElement('option');
	//nouveau_option.setAttribute("value", idorganisation);
	//nouveau_texte=document.createTextNode(nomorganisation);
	//nouveau_option.appendChild(nouveau_texte);
	//document.getElementById("selectnom").appendChild(nouveau_option);

}