
// *****************************************************************************
// Test la validité du critère de recherche :
// *****************************************************************************
function validation_recherche_form(thisForm) 
{
    if  (thisForm.recherche_critere.value == "")
    {
        alert("Vous avez oublié de renseigner un critère de recherche !");
        thisForm.recherche_critere.focus();
        return false;
    }
    if  (thisForm.recherche_critere.value == "rechercher un spectacle")
    {
        alert("Vous avez oublié de renseigner un critère de recherche !");
        thisForm.recherche_critere.focus();
        return false;
    }
    return true;
}