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