/**
  * 
  */
 public function detailCoursesAction()
 {
     $this->_helper->layout()->disableLayout();
     $id = $this->_getParam('id');
     $this->view->row = $this->_mapper->detailEducationInstitution($id);
     $this->view->courses = $this->_mapper->listCourses($id);
     $this->view->contact = $this->_mapper->listContacts($id);
 }