public function indexAction()
 {
     include_once 'support.php';
     array_push($this->viewIncludes, 'support/List.tpl');
     $support = new Support();
     $this->tplVars['support'] = $support->selectAll();
     unset($support);
 }