/**
     * @see SugarView::display()
     */
    public function display()
    {
        global $mod_strings;
        echo '<table width="100%" border="0" cellspacing="0" cellpadding="0">
		<tr><td colspan="100"><h2>' . $this->getModuleTitle(false) . '</h2></td></tr><tr><td colspan="100">' . $mod_strings['LBL_GLOBAL_SEARCH_SETTINGS_TITLE'] . '</td></tr><tr><td><br></td></tr><tr><td colspan="100">';
        //echo $this->getModuleTitle();
        require_once 'modules/Home/UnifiedSearchAdvanced.php';
        $usa = new UnifiedSearchAdvanced();
        echo $usa->modifyGlobalSearchSettings();
    }