/* search form  */
function startSearch(){

if( document.searchForm.ss.value == "" ){
alert("Attention! Tu n’as pas saisi ton mot dans la recherche");
return false;
}

if( document.searchForm.ss.value.length < 2 ){
alert("Attention! Le mot recherché doit comporter au moins 2 caractères");
return false;

}

}

function submit_search_form(form, SM_SS) {

form.ss.value=SM_SS;
form.types.value="";
form.submit();
return true;
}
