 function MemberAcution(){
     MemberAcution.prototype.AccountIsExist=function (account,callback) {
           return this.invoke('AccountIsExist', {'account':account}, callback);
     },
     MemberAcution.prototype.ChgPwd=function (oldPwd,newPwd,callback) {
           return this.invoke('ChgPwd', {'oldPwd':oldPwd,'newPwd':newPwd}, callback);
     },
     MemberAcution.prototype.AddToFavorite=function (userId,callback) {
           return this.invoke('AddToFavorite', {'userId':userId}, callback);
     },
     MemberAcution.prototype.DelFavorite=function (userId,callback) {
           return this.invoke('DelFavorite', {'userId':userId}, callback);
     },
     MemberAcution.prototype.Login=function (account,password,callback) {
           return this.invoke('Login', {'account':account,'password':password}, callback);
     },
     MemberAcution.prototype.LogonOut=function (tmp,callback) {
           return this.invoke('LogonOut', {'tmp':tmp}, callback);
     },
     MemberAcution.prototype.GetCurrentMemberInfo=function (tmp,callback) {
           return this.invoke('GetCurrentMemberInfo', {'tmp':tmp}, callback);
     },
     MemberAcution.prototype.initialize=function() {
        this.url = '/SiteCtrl/Ajax/index.php?module=/Member/MemberAcution.cls.php&class=MemberAcution';
    }
}
Object.Extend(MemberAcution, AjaxRequest )