members_class = function() {};
Object.extend(members_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Send: function(receiver, subject, msg) {
		return this.invoke("Send", {"receiver":receiver, "subject":subject, "msg":msg}, this.Send.getArguments().slice(3));
	},
	SetVote: function(uname, num) {
		return this.invoke("SetVote", {"uname":uname, "num":num}, this.SetVote.getArguments().slice(2));
	},
	GetBoxText: function(val) {
		return this.invoke("GetBoxText", {"val":val}, this.GetBoxText.getArguments().slice(1));
	},
	GetRateHover: function(username) {
		return this.invoke("GetRateHover", {"username":username}, this.GetRateHover.getArguments().slice(1));
	},
	NotifyActivation: function(username) {
		return this.invoke("NotifyActivation", {"username":username}, this.NotifyActivation.getArguments().slice(1));
	},
	url: '/ajaxpro/members,App_Web_members.aspx.da78cef9.ashx'
}));
members = new members_class();

