if(typeof ForgotPassword == "undefined") ForgotPassword={};
ForgotPassword_class = function() {};
Object.extend(ForgotPassword_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	MakeNewPassword: function(email, body) {
		return this.invoke("MakeNewPassword", {"email":email, "body":body}, this.MakeNewPassword.getArguments().slice(2));
	},
	ValidateUsername: function(username) {
		return this.invoke("ValidateUsername", {"username":username}, this.ValidateUsername.getArguments().slice(1));
	},
	ValidateEmail: function(email) {
		return this.invoke("ValidateEmail", {"email":email}, this.ValidateEmail.getArguments().slice(1));
	},
	url: '/PublicSite/ajaxpro/ForgotPassword,App_Web_klhaic04.ashx'
}));
ForgotPassword = new ForgotPassword_class();

