//TE: search level combo...
    CBPanel searchLevelPanel = new CBPanel();
    searchLevelPanel.setBorder(new TitledBorder(CBIntText.get("Search Level")));  
    searchLevelPanel.addln(new JLabel(CBIntText.get("Select Search Level") + ": "));
    searchLevelPanel.makeWide();
    searchLevelPanel.addln(searchLevelCombo = new CBJComboBox(searchLevelArray));
    searchLevelCombo.setSelectedIndex(FULLSUBTREESEARCH);  
    
    //TE: put the alias & search level panels on the options panel then add the options panel to the main panel...
    optionsPanel.add(aliasPanel);