/**
  * Activate the tab with the given name, number or controlId.
  *
  * @param string|integer $mixTab The tab name, tab index number or control ID
  */
 public function ActivateTab($mixTab)
 {
     if (false !== ($i = $this->FindTabIndex($mixTab))) {
         parent::Option2('active', $i);
     }
 }