public function _new()
 {
     //		$SystemcompanyCollection = new SystemcompanyCollection;
     //		$this->view->set('options',$SystemcompanyCollection->getCompanies());
     //		$user = new User;
     //		$this->view->set('users',$user->getAll());
     $Systemcompany = new Systemcompany();
     $users = $Systemcompany->getNonUsers();
     $system = System::Instance();
     if ($users) {
         $this->view->set('users', $users);
     } elseif (strtolower($system->action) != 'edit') {
         $flash = Flash::Instance();
         $flash->addMessage('All users have been allocated to this company');
         sendBack();
     }
     parent::_new();
 }