addNamespace("findRetailStore");
findRetailStore_class = function() {};
Object.extend(findRetailStore_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	availableLocations: function() {
		return this.invoke("availableLocations", {}, this.availableLocations.getArguments().slice(0));
	},
	getLocations: function(city) {
		return this.invoke("getLocations", {"city":city}, this.getLocations.getArguments().slice(1));
	},
	url: '/ajaxpro/findRetailStore,App_Web_cbhsoaup.ashx'
}));
findRetailStore = new findRetailStore_class();

