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