function SoumissionRecherche(obj_Form, str_depart){
	formulaireOk = ChampNonVide(obj_Form.words, txt_mot_recherche);
	
	// Test si la chaine recherché n'est pas egale à la chaine de depart
	if(formulaireOk && obj_Form.words.value == str_depart){
		alert(txt_mot_recherche_erreur);
		formulaireOk = false;
	}
	
	// Test si la chaine recherché contient plus de 2 lettres sauf exception
	if(formulaireOk && obj_Form.words.value.length < 3){
		mot = obj_Form.words.value.toString();
		motMin = mot.toLowerCase();
		if(motMin != "t1" && motMin != "t2" && motMin != "t3" && motMin != "t4" && motMin != "t5" && motMin != "t6"){
			alert(txt_mot_recherche_court);
			formulaireOk = false;
		}
	}
	
	return formulaireOk; 
}