public function changestatusAction()
 {
     global $mySession;
     $db = new Db();
     $status = $_REQUEST['Status'];
     $lId = $_REQUEST['Id'];
     $lppty_type = $this->getRequest()->getParam("lppty_type");
     $myObj = new Slides();
     $Result = $myObj->changeStatus($lId, $status);
     if ($Result > 0) {
         $mySession->sucessMsg = "Latest Property Modified successfully.";
     } else {
         $mySession->errorMsg = "An Error Occurred while trying to modify the data";
     }
     exit;
 }