function SubmitSearch(Form) {
    Form.action = 'javascript:;';
    DisableButtons(Form);
    var Alerts = new Array();
    if ((Form.Keywords.value == 'Rechercher') || !ValidateEntering(Form.Keywords.value)) {
        Alerts.push('Il manque les mots-clés à rechercher');
    }
    if (Alerts.length) {
        ShowAlerts(Alerts, { Title: 'Désolé' });
        EnableButtons(Form);
    }
    else {
        Form.action = '?pg=Rechercher';
    }
}
