if(typeof BlogAjax == "undefined") BlogAjax={};
BlogAjax_class = function() {};
Object.extend(BlogAjax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	SetStyele: function(UserID, Value) {
		return this.invoke("SetStyele", {"UserID":UserID, "Value":Value}, this.SetStyele.getArguments().slice(2));
	},
	GetArticleClass: function(UserID) {
		return this.invoke("GetArticleClass", {"UserID":UserID}, this.GetArticleClass.getArguments().slice(1));
	},
	GetAlbum: function(UserID) {
		return this.invoke("GetAlbum", {"UserID":UserID}, this.GetAlbum.getArguments().slice(1));
	},
	GetLink: function(UserID) {
		return this.invoke("GetLink", {"UserID":UserID}, this.GetLink.getArguments().slice(1));
	},
	GetFeedback: function(UesrID) {
		return this.invoke("GetFeedback", {"UesrID":UesrID}, this.GetFeedback.getArguments().slice(1));
	},
	DeleteArticle: function(ArticleID, UserID) {
		return this.invoke("DeleteArticle", {"ArticleID":ArticleID, "UserID":UserID}, this.DeleteArticle.getArguments().slice(2));
	},
	url: '/ajaxpro/BlogAjax,weyes.ashx'
}));
BlogAjax = new BlogAjax_class();


