/* Gestion champ recherche */
function inputFocus(inputValue, inputId){
	if(inputValue == "Recherchez" && inputId == "fulltextField"){
		document.getElementById(inputId).value="";
	}else if(inputValue == "" && inputId == "fulltextField"){
		document.getElementById(inputId).value="Recherchez";
	}
}


