var filterCounts=function() {
filterCounts.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
filterCounts.prototype={
getfilterCounts:function(lookup,sqlstr,succeededCallback, failedCallback, userContext) {
return this._invoke(filterCounts.get_path(), 'getfilterCounts',false,{lookup:lookup,sqlstr:sqlstr},succeededCallback,failedCallback,userContext); }}
filterCounts.registerClass('filterCounts',Sys.Net.WebServiceProxy);
filterCounts._staticInstance = new filterCounts();
filterCounts.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; filterCounts._staticInstance._path = value; }
filterCounts.get_path = function() { return filterCounts._staticInstance._path; }
filterCounts.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
filterCounts._staticInstance._timeout = value; }
filterCounts.get_timeout = function() { 
return filterCounts._staticInstance._timeout; }
filterCounts.set_defaultUserContext = function(value) { 
filterCounts._staticInstance._userContext = value; }
filterCounts.get_defaultUserContext = function() { 
return filterCounts._staticInstance._userContext; }
filterCounts.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; filterCounts._staticInstance._succeeded = value; }
filterCounts.get_defaultSucceededCallback = function() { 
return filterCounts._staticInstance._succeeded; }
filterCounts.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; filterCounts._staticInstance._failed = value; }
filterCounts.get_defaultFailedCallback = function() { 
return filterCounts._staticInstance._failed; }
filterCounts.set_path("/filterCounts.asmx");
filterCounts.getfilterCounts= function(lookup,sqlstr,onSuccess,onFailed,userContext) {filterCounts._staticInstance.getfilterCounts(lookup,sqlstr,onSuccess,onFailed,userContext); }
