
function checkBusca(theForm)
{
	theForm.busca.value = trim(theForm.busca.value);
 if (theForm.busca.value == "")
  {
    alert("Introduzca un término de búsqueda."); 
    theForm.busca.focus();
    return (false);
  }
  
  return (true);
}
