RegisterAjax_class = function() {};
Object.extend(RegisterAjax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	CheckUsername: function(username) {
		return this.invoke("CheckUsername", {"username":username}, this.CheckUsername.getArguments().slice(1));
	},
	ComparePasswords: function(password1, password2) {
		return this.invoke("ComparePasswords", {"password1":password1, "password2":password2}, this.ComparePasswords.getArguments().slice(2));
	},
	CheckEmailAddress: function(email) {
		return this.invoke("CheckEmailAddress", {"email":email}, this.CheckEmailAddress.getArguments().slice(1));
	},
	CheckPassword: function(password) {
		return this.invoke("CheckPassword", {"password":password}, this.CheckPassword.getArguments().slice(1));
	},
	CheckName: function(name) {
		return this.invoke("CheckName", {"name":name}, this.CheckName.getArguments().slice(1));
	},
	CheckReferralCode: function(code) {
		return this.invoke("CheckReferralCode", {"code":code}, this.CheckReferralCode.getArguments().slice(1));
	},
	url: '/ajaxpro/Paramagnus.Website.Main.Register.RegisterAjax,App_Code.nzl6qpzy.ashx'
}));
RegisterAjax = new RegisterAjax_class();

