Type.registerNamespace('Clozone.Web.WebService'); Clozone.Web.WebService.Link = { path: "/WebService/Link.asmx", AddLinkBox:function(prefix,zoneIndex,partIndex,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "AddLinkBox",{prefix:prefix,zoneIndex:zoneIndex,partIndex:partIndex}, onMethodComplete, onMethodTimeout); }, AddLink:function(prefix,linkBoxID,title,url,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "AddLink",{prefix:prefix,linkBoxID:linkBoxID,title:title,url:url}, onMethodComplete, onMethodTimeout); }, DeleteLink:function(prefix,linkID,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "DeleteLink",{prefix:prefix,linkID:linkID}, onMethodComplete, onMethodTimeout); }, GetLinks:function(linkBoxID,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetLinks",{linkBoxID:linkBoxID}, onMethodComplete, onMethodTimeout); } }