function reqGen()
{
	var rechNom = document.rechercheForm.nom.value;
	var rechPays = document.rechercheForm.pays.value;
	var rechVille = document.rechercheForm.ville.value;
	var rechFormation = document.rechercheForm.formation.value;
	var toExec = './config/annuaire.res.php?nom='+rechNom+'&pays='+rechPays+'&ville='+rechVille+'&formation='+rechFormation;
	nbRes = getXHR(toExec);
	document.getElementById('nbRes').innerHTML = nbRes+' résultats';
}

// Fonction getXHR
function getXHR(fichier)
{
	if(window.XMLHttpRequest) // FIREFOX
		xhr_object = new XMLHttpRequest();
	else if(window.ActiveXObject) // IE
	{
		try {
		xhr_object = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
		xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	else
		return(false);
	
	xhr_object.open("GET", fichier, false);
	xhr_object.send(null);
	if(xhr_object.readyState == 4) return(xhr_object.responseText);
	else return(false);
}