private function insertAccount()
 {
     $this->account->setStatus(Gpf_Db_Account::APPROVED);
     try {
         $this->account->insert();
     } catch (Exception $e) {
         throw new Gpf_Exception($this->_('Could not create account. (%s)', $e->getMessage()));
     }
 }