public function executeDelete()
 {
     $organization = OrganizationPeer::retrieveByPk($this->getRequestParameter('id'));
     $this->forward404Unless($organization);
     $organization->delete();
     return $this->redirect('organization/list');
 }