private function getMagentoCustomerByEmail($_emailAddress, $_storeID)
 {
     $_customerCountry = null;
     $_obj = new MagentoCollection();
     $_obj->getCustomerByEmailAddress($_emailAddress, $_storeID);
     $_collection = $_obj->get('collection');
     $_addressData = $_obj->get('addressdata');
     if ($_addressData['country_id']) {
         $_customerCountry = $_obj->getCustomerCountry($_addressData['country_id']);
     }
     unset($_obj);
     $this->set('collection', $_collection);
     $this->set('addressdata', $_addressData);
     $this->set('customercountry', $_customerCountry);
 }