addNamespace("APA.Store.UI.Customer");
APA.Store.UI.Customer.clsAccountProfile_class = function() {};
Object.extend(APA.Store.UI.Customer.clsAccountProfile_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	IsUser: function(LoginID) {
		return this.invoke("IsUser", {"LoginID":LoginID}, this.IsUser.getArguments().slice(1));
	},
	GeneratePassword: function() {
		return this.invoke("GeneratePassword", {}, this.GeneratePassword.getArguments().slice(0));
	},
	url: '/APAStore/ajaxpro/APA.Store.UI.Customer.clsAccountProfile,APA.Store.UI.ashx'
}));
APA.Store.UI.Customer.clsAccountProfile = new APA.Store.UI.Customer.clsAccountProfile_class();

