/** View institutional details
  * @access public
  * @return void
  */
 public function institutionAction()
 {
     if ($this->getParam('id', false)) {
         $this->view->inst = $this->_institutions->getInst($this->getParam('id'));
         $this->view->members = $this->getUsers()->getMembersInstitution($this->getParam('id'));
     } else {
         throw new Pas_Exception_Param($this->_missingParameter, 500);
     }
 }