function validaBuscadorCat(idioma) {

    var texto
    
    if (idioma == '1'){
       texto = 'Por favor, introduzca el texto que desea buscar'
    }
    else{
       texto = 'Please, enter the text'    
    }

    if (document.getElementById('buscadorCat').value == '')
       {
          alert(texto);
          document.getElementById('buscadorCat').focus();
          return(false);
       }
     else
    {
       document.getElementById('manzBuscCat').src='/imagenes/public/manzanaMordida.gif';        
       return(true);
    }

}
