
function validar_buscador_palabras (theForm) {
    if (theForm.textoBusqueda.value == "") {
        alert(tt_buscador_validacion_texto);
        theForm.textoBusqueda.focus();
        return (false);
    }
    return (true);
}


