Type.registerNamespace('WebService'); WebService.Listing = { path: "/WebServices/Listing.asmx", GetDescription:function(productID,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetDescription",{productID:productID}, onMethodComplete, onMethodTimeout); }, GetUserEmail:function(userID,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetUserEmail",{userID:userID}, onMethodComplete, onMethodTimeout); } }