/**
  * Cadastro de novas Universidades
  */
 public function novoAction()
 {
     $form = new Application_Form_Universidade();
     if ($this->getRequest()->isPost()) {
         if ($this->getRequest()->getPost('cancelar') == "") {
             $formData = $this->getRequest()->getPost();
             if ($form->isValid($formData)) {
                 $nome = $form->getValue('nome');
                 $oUniversidades = new Application_Model_DbTable_Universidades();
                 $oUniversidades->novoUniversidade($nome);
                 $this->_helper->flashMessenger->addMessage(utf8_encode('Cadastro realizado com sucesso!'));
             } else {
                 $form->populate($formData);
             }
         }
         $this->_helper->redirector('index');
     }
 }