private static boolean checkForSpecialSearchTerm(String str) {
    str = str.trim();

    String hit = UrlUtils.parseTextForURL(str, true, true);

    if (hit == null) {

      return (false);
    }

    UIFunctionsSWT uiFunctions = UIFunctionsManagerSWT.getUIFunctionsSWT();

    new FileDownloadWindow(uiFunctions.getMainShell(), str, null, null, true);

    return (true);
  }