function identifie_saisie()
	{
		if (document.getElementById('label_recherche_libre').value != ""){
			//alert("coucou");
			document.getElementById('id_type_recherche').value = "1";
			
			engine = ajaxFunction(); 
			argument = encodeURI("label_recherche_libre=" + document.getElementById('label_recherche_libre').value);
			ipurl = "identifie_saisie.php?" + argument; 
			engine.onreadystatechange=function() { 
				
				if(engine.readyState==4) { 
					
					var reponseajax = engine.responseText;
					
					tab_reponseajax=reponseajax.split('#');
					
					//alert(reponseajax);
					
					if (tab_reponseajax[0] == "0") {
						str = "Je ne comprend pas ce que vous avez écrit";
						document.getElementById('message').innerHTML = str;
						}	
					if (tab_reponseajax[0] == "2") {
						// PLUSIEURS ENTITE A CHOISIR
						str = 'Cliquer sur la proposition de votre choix:<ul>';
						//	envoie_formulaire(\'' + tab_reponseajax[i] + '\');
						for (i=1; i<tab_reponseajax.length-1; i=i+3){
							str = str + '<li class="liste_suggestion" onclick="envoie_formulaire(\'' + tab_reponseajax[i] + '\',\'' + tab_reponseajax[i+2] + '\');">' +tab_reponseajax[i+1] + '<\/li>';
							}
						str = str + '</ul>';
						document.getElementById('message').innerHTML = str;
						//alert(str);
						}	
					if (tab_reponseajax[0] == "3") {
						str = "Vous voulez dire <span onclick=\"envoi_formulaire_reponde_type3('" + tab_reponseajax[1] + "')\">" + tab_reponseajax[1] + "</span> ?";
						document.getElementById('message').innerHTML = str;
						}	
					if (tab_reponseajax[0] == "4") {
						envoie_formulaire(tab_reponseajax[1],tab_reponseajax[3]);
						}
					}
				}
			engine.open("GET",ipurl,true); 
			engine.send('');
		}
	}
function envoi_formulaire_reponde_type3(label_suggere){
	document.getElementById('label_recherche_libre').value = label_suggere;
	identifie_saisie()
	}
