function validerRecherche() {

	with (document.recherche) {
		
		// Transformation d'un apostrophe normal en apostrophe "Word" + élimination des espaces avant et après le mot
		
		artistePrenom.value = trim(artistePrenomBox.value.replace(/\'/g,'´'));
		artisteNom.value = trim(artisteNomBox.value.replace(/\'/g,'´'));
		oeuvre.value = trim(oeuvreBox.value.replace(/\'/g,'´'));
	}
	
	return true;
}

function trim(txt) {
	while (txt.substring(0,1) == ' ') {
		txt = txt.substring(1, txt.length);
	}
	while (txt.substring(txt.length-1, txt.length) == ' ') {
		txt = txt.substring(0,txt.length-1);
	}
	return txt;
}
