if(typeof roomster == "undefined") roomster={};
if(typeof roomster.net == "undefined") roomster.net={};
roomster.net.profileinfo_class = function() {};
Object.extend(roomster.net.profileinfo_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	send_message: function(view_uid, uid, subject, body) {
		return this.invoke("send_message", {"view_uid":view_uid, "uid":uid, "subject":subject, "body":body}, this.send_message.getArguments().slice(4));
	},
	ServerTime: function() {
		return this.invoke("ServerTime", {}, this.ServerTime.getArguments().slice(0));
	},
	userID: function() {
		return this.invoke("userID", {}, this.userID.getArguments().slice(0));
	},
	hotlist_add: function(view_uid, uid) {
		return this.invoke("hotlist_add", {"view_uid":view_uid, "uid":uid}, this.hotlist_add.getArguments().slice(2));
	},
	hotlist_remove: function(view_uid, uid) {
		return this.invoke("hotlist_remove", {"view_uid":view_uid, "uid":uid}, this.hotlist_remove.getArguments().slice(2));
	},
	url: '/ajaxpro/roomster.net.profileinfo,roomster.net.ashx'
}));
roomster.net.profileinfo = new roomster.net.profileinfo_class();

