var PageFetch=function() {
PageFetch.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PageFetch.prototype={
GetPage:function(ArticleNo,PageNo,succeededCallback, failedCallback, userContext) {
return this._invoke(PageFetch.get_path(), 'GetPage',false,{ArticleNo:ArticleNo,PageNo:PageNo},succeededCallback,failedCallback,userContext); }}
PageFetch.registerClass('PageFetch',Sys.Net.WebServiceProxy);
PageFetch._staticInstance = new PageFetch();
PageFetch.set_path = function(value) { PageFetch._staticInstance._path = value; }
PageFetch.get_path = function() { return PageFetch._staticInstance._path; }
PageFetch.set_timeout = function(value) { PageFetch._staticInstance._timeout = value; }
PageFetch.get_timeout = function() { return PageFetch._staticInstance._timeout; }
PageFetch.set_defaultUserContext = function(value) { PageFetch._staticInstance._userContext = value; }
PageFetch.get_defaultUserContext = function() { return PageFetch._staticInstance._userContext; }
PageFetch.set_defaultSucceededCallback = function(value) { PageFetch._staticInstance._succeeded = value; }
PageFetch.get_defaultSucceededCallback = function() { return PageFetch._staticInstance._succeeded; }
PageFetch.set_defaultFailedCallback = function(value) { PageFetch._staticInstance._failed = value; }
PageFetch.get_defaultFailedCallback = function() { return PageFetch._staticInstance._failed; }
PageFetch.set_path("/PageFetch.asmx");
PageFetch.GetPage= function(ArticleNo,PageNo,onSuccess,onFailed,userContext) {PageFetch._staticInstance.GetPage(ArticleNo,PageNo,onSuccess,onFailed,userContext); }
