addNamespace("rrsou07blog.Ajax");
rrsou07blog.Ajax.Comm_class = Class.create();
rrsou07blog.Ajax.Comm_class.prototype = (new AjaxPro.Request()).extend({
	UserIsLogin: function(callback) {
		return this.invoke("UserIsLogin", {}, callback);
	},
	UserLoginQuit: function(callback) {
		return this.invoke("UserLoginQuit", {}, callback);
	},
	UserLogin: function(name, pwd, rember, callback) {
		return this.invoke("UserLogin", {"name":name, "pwd":pwd, "rember":rember}, callback);
	},
	GetBlogHead: function(name, callback) {
		return this.invoke("GetBlogHead", {"name":name}, callback);
	},
	GetBlogHeadByUserId: function(userId, callback) {
		return this.invoke("GetBlogHeadByUserId", {"userId":userId}, callback);
	},
	GetLmFriendList: function(name, callback) {
		return this.invoke("GetLmFriendList", {"name":name}, callback);
	},
	GetLmFriendListByUserId: function(userId, callback) {
		return this.invoke("GetLmFriendListByUserId", {"userId":userId}, callback);
	},
	AddLmBlogVisited: function(name, callback) {
		return this.invoke("AddLmBlogVisited", {"name":name}, callback);
	},
	AddLmBlogVisitedByUserId: function(userId, callback) {
		return this.invoke("AddLmBlogVisitedByUserId", {"userId":userId}, callback);
	},
	GetLmBlogVisited: function(name, callback) {
		return this.invoke("GetLmBlogVisited", {"name":name}, callback);
	},
	GetLmBlogVisitedByUserId: function(userId, callback) {
		return this.invoke("GetLmBlogVisitedByUserId", {"userId":userId}, callback);
	},
	GetLmBlogLastVisited: function(name, callback) {
		return this.invoke("GetLmBlogLastVisited", {"name":name}, callback);
	},
	GetLmBlogLastVisitedByUserId: function(userId, callback) {
		return this.invoke("GetLmBlogLastVisitedByUserId", {"userId":userId}, callback);
	},
	AddLmBlogLastVisited: function(name, callback) {
		return this.invoke("AddLmBlogLastVisited", {"name":name}, callback);
	},
	AddLmBlogLastVisitedByUserId: function(userId, callback) {
		return this.invoke("AddLmBlogLastVisitedByUserId", {"userId":userId}, callback);
	},
	GetLmBlogLastReview: function(name, callback) {
		return this.invoke("GetLmBlogLastReview", {"name":name}, callback);
	},
	GetLmBlogLastReviewByUserId: function(userId, callback) {
		return this.invoke("GetLmBlogLastReviewByUserId", {"userId":userId}, callback);
	},
	GetLmBlogLastNews: function(name, callback) {
		return this.invoke("GetLmBlogLastNews", {"name":name}, callback);
	},
	GetLmBlogLastNewsByUserId: function(userId, callback) {
		return this.invoke("GetLmBlogLastNewsByUserId", {"userId":userId}, callback);
	},
	GetLmBlogUserInfo: function(name, callback) {
		return this.invoke("GetLmBlogUserInfo", {"name":name}, callback);
	},
	GetLmBlogUserInfoByUserId: function(userId, callback) {
		return this.invoke("GetLmBlogUserInfoByUserId", {"userId":userId}, callback);
	},
	GetBlogIndexNewsList: function(name, callback) {
		return this.invoke("GetBlogIndexNewsList", {"name":name}, callback);
	},
	GetBlogNewsPage: function(name, page, callback) {
		return this.invoke("GetBlogNewsPage", {"name":name, "page":page}, callback);
	},
	GetBlogNewsPageCount: function(name, callback) {
		return this.invoke("GetBlogNewsPageCount", {"name":name}, callback);
	},
	GetBlogArticlePage: function(name, page, callback) {
		return this.invoke("GetBlogArticlePage", {"name":name, "page":page}, callback);
	},
	GetBlogArticlePageCount: function(name, callback) {
		return this.invoke("GetBlogArticlePageCount", {"name":name}, callback);
	},
	GetBlogArticleOne: function(aid, callback) {
		return this.invoke("GetBlogArticleOne", {"aid":aid}, callback);
	},
	AddLmBlogArticleVisited: function(aid, callback) {
		return this.invoke("AddLmBlogArticleVisited", {"aid":aid}, callback);
	},
	AddBlogArticleGood: function(aid, callback) {
		return this.invoke("AddBlogArticleGood", {"aid":aid}, callback);
	},
	GetBlogFriendPage: function(name, page, callback) {
		return this.invoke("GetBlogFriendPage", {"name":name, "page":page}, callback);
	},
	GetBlogFriendPageCount: function(name, callback) {
		return this.invoke("GetBlogFriendPageCount", {"name":name}, callback);
	},
	AddBlogFriendByName: function(name, callback) {
		return this.invoke("AddBlogFriendByName", {"name":name}, callback);
	},
	AddBlogFriendById: function(uid, callback) {
		return this.invoke("AddBlogFriendById", {"uid":uid}, callback);
	},
	GetBlogAlbumPage: function(name, page, callback) {
		return this.invoke("GetBlogAlbumPage", {"name":name, "page":page}, callback);
	},
	GetBlogAlbumPageCount: function(name, callback) {
		return this.invoke("GetBlogAlbumPageCount", {"name":name}, callback);
	},
	GetBlogAlbumInfo: function(aid, callback) {
		return this.invoke("GetBlogAlbumInfo", {"aid":aid}, callback);
	},
	GetBlogAlbumPhoto: function(aid, callback) {
		return this.invoke("GetBlogAlbumPhoto", {"aid":aid}, callback);
	},
	GetBlogAlbumPhotoCount: function(aid, callback) {
		return this.invoke("GetBlogAlbumPhotoCount", {"aid":aid}, callback);
	},
	GetBlogMessagePage: function(name, page, callback) {
		return this.invoke("GetBlogMessagePage", {"name":name, "page":page}, callback);
	},
	GetBlogMessagePageCount: function(name, callback) {
		return this.invoke("GetBlogMessagePageCount", {"name":name}, callback);
	},
	SendReview: function(name, callback) {
		return this.invoke("SendReview", {"name":name}, callback);
	},
	GetBlogArticleReviewPage: function(aid, page, callback) {
		return this.invoke("GetBlogArticleReviewPage", {"aid":aid, "page":page}, callback);
	},
	GetBlogArticleReviewPageCount: function(aid, callback) {
		return this.invoke("GetBlogArticleReviewPageCount", {"aid":aid}, callback);
	},
	SendArticleReview: function(uid, aid, callback) {
		return this.invoke("SendArticleReview", {"uid":uid, "aid":aid}, callback);
	},
	GetBlogUserInfo: function(uid, callback) {
		return this.invoke("GetBlogUserInfo", {"uid":uid}, callback);
	},
	GetBlogMusic: function(name, callback) {
		return this.invoke("GetBlogMusic", {"name":name}, callback);
	},
	SendBlogSmallMessageByName: function(name, callback) {
		return this.invoke("SendBlogSmallMessageByName", {"name":name}, callback);
	},
	SendBlogSmallMessageById: function(uid, callback) {
		return this.invoke("SendBlogSmallMessageById", {"uid":uid}, callback);
	},
	GetSmallMessageCount: function(callback) {
		return this.invoke("GetSmallMessageCount", {}, callback);
	},
	GetSysTagKind: function(callback) {
		return this.invoke("GetSysTagKind", {}, callback);
	},
	GetSysTag: function(kindid, callback) {
		return this.invoke("GetSysTag", {"kindid":kindid}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/rrsou07blog.Ajax.Comm,rrsou07blog.ashx";
	}
})
rrsou07blog.Ajax.Comm = new rrsou07blog.Ajax.Comm_class();

