/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
<!--
function check() {
	var msg = "";

  if (document.form_recherche.recherche.value=="    " || document.form_recherche.recherche.value=="     " || document.form_recherche.recherche.value=="      " || document.form_recherche.recherche.value=="       " || document.form_recherche.recherche.value=="        ") {msg = "Veuillez taper au minimum 3 caractères.";}
	if (document.form_recherche.recherche.value.length < 3) {msg = "Veuillez taper au minimum 3 caractères.";}

	if (msg == "") {
		document.form_recherche.submit();
		return(true);
	}
	else {
		alert(msg);
		return(false);
	}
}
-->
