function ControleZoeken() {
    blnFout = false;
    strFout = "";

    if (document.Zoeken.ZoekTerm.value == "") {
        blnFout = true;
        strFout = "- U heeft geen zoekterm ingevuld!\n" + strFout;
        document.Zoeken.ZoekTerm.focus();
    }

    if (blnFout) {
        alert(strFout);
        return false;
    }

    return true;
}
