public function addaddressAction()
 {
     global $mySession;
     $db = new Db();
     $this->_helper->layout->setLayout('myaccount');
     if ($this->getRequest()->isPost()) {
         $request = $this->getRequest();
         $myform = new Form_Changeaddress();
         if ($myform->isValid($request->getPost())) {
             $dataForm = $myform->getValues();
             $myObj = new Myaccountdb();
             $data = $myObj->addaddress($dataForm);
             if ($data == 1) {
                 $mySession->errorMsg = "Address Added";
                 $this->_redirect('myaccount/profile');
             }
         } else {
             $this->view->myform = $myform;
             $this->render('changeaddress');
         }
     } else {
         $this->_redirect('myaccount/changeaddress');
     }
 }