Type.registerNamespace('Hoozone.Web.WebService'); Hoozone.Web.WebService.ReplyService = { path: "/WebService/ReplyService.asmx", GetReply:function(pageIndex,pageSize,prefix,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetReply",{pageIndex:pageIndex,pageSize:pageSize,prefix:prefix}, onMethodComplete, onMethodTimeout); }, AddReply:function(pageSize,prefix,content,userName,password,email,homepage,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "AddReply",{pageSize:pageSize,prefix:prefix,content:content,userName:userName,password:password,email:email,homepage:homepage}, onMethodComplete, onMethodTimeout); }, DeleteReply:function(pageIndex,pageSize,prefix,replyID,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "DeleteReply",{pageIndex:pageIndex,pageSize:pageSize,prefix:prefix,replyID:replyID}, onMethodComplete, onMethodTimeout); }, UpdateQuickReplySettings:function(prefix,quickReplaysPerPage,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "UpdateQuickReplySettings",{prefix:prefix,quickReplaysPerPage:quickReplaysPerPage}, onMethodComplete, onMethodTimeout); } }