/** Set up the individual denominations
  * @access public
  * @throws Pas_Exception_Param
  * @return void
  */
 public function denominationAction()
 {
     if ($this->getParam('id', false)) {
         $id = $this->getParam('id');
         $this->view->denoms = $this->_denominations->getDenom($id, (int) 21);
         $emps = new Emperors();
         $this->view->emps = $emps->getDenomEmperor($id);
     } else {
         throw new Pas_Exception_Param($this->_missingParameter, 500);
     }
 }