//fonction qui recupere le contenu du champ de recherche et y ajoute un mot supplementaire
function addmot(form) {
	if (form.options[form.selectedIndex].value != '') {
		window.document.choixact.recherche.value = window.document.choixact.recherche.value + " " + form.options[form.selectedIndex].value;
	}
}

function clearech(form) {
	window.document.choixact.recherche.value = "";
}
