addNamespace("BBS.Common");
BBS.Common.List_class = function() {};
Object.extend(BBS.Common.List_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetUserName: function(sUserId) {
		return this.invoke("GetUserName", {"sUserId":sUserId}, this.GetUserName.getArguments().slice(1));
	},
	GetUserSex: function(sUserId) {
		return this.invoke("GetUserSex", {"sUserId":sUserId}, this.GetUserSex.getArguments().slice(1));
	},
	GetUserBlog: function(sUserId) {
		return this.invoke("GetUserBlog", {"sUserId":sUserId}, this.GetUserBlog.getArguments().slice(1));
	},
	GetUserRenqi: function(sUserId) {
		return this.invoke("GetUserRenqi", {"sUserId":sUserId}, this.GetUserRenqi.getArguments().slice(1));
	},
	GetUserFriend: function(sUserId) {
		return this.invoke("GetUserFriend", {"sUserId":sUserId}, this.GetUserFriend.getArguments().slice(1));
	},
	url: '/ajaxpro/BBS.Common.List,BBS.ashx'
}));
BBS.Common.List = new BBS.Common.List_class();

