function deleteitemsAction()
 {
     $this->_helper->layout()->disableLayout();
     $chucvuModel = new Front_Model_ChucVuDang();
     if ($this->_request->isPost()) {
         $item = $this->getRequest()->getPost('cid');
         foreach ($item as $k => $v) {
             $chucvuModel->delete('cvdang_id=' . $v);
         }
     }
     $this->_redirect('hethong/chucvudang/index/page/' . $this->_page);
 }