ajax_class = function() {};
Object.extend(ajax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	CreateAccount: function(user) {
		return this.invoke("CreateAccount", {"user":user}, this.CreateAccount.getArguments().slice(1));
	},
	CheckLogin: function(userName, password) {
		return this.invoke("CheckLogin", {"userName":userName, "password":password}, this.CheckLogin.getArguments().slice(2));
	},
	RetrievePassword: function(emailAddress) {
		return this.invoke("RetrievePassword", {"emailAddress":emailAddress}, this.RetrievePassword.getArguments().slice(1));
	},
	url: '/ajaxpro/Sarisari.Tv.Lib.Site.Controls.Join,Sarisari.Tv.Lib.ashx'
}));
ajax = new ajax_class();


