var TyreSearch=function() {
TyreSearch.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
TyreSearch.prototype={
GetSizeDropDown:function(succeededCallback, failedCallback, userContext) {
return this._invoke(TyreSearch.get_path(), 'GetSizeDropDown',false,{},succeededCallback,failedCallback,userContext); },
GetRimDropDown:function(strSize,succeededCallback, failedCallback, userContext) {
return this._invoke(TyreSearch.get_path(), 'GetRimDropDown',false,{strSize:strSize},succeededCallback,failedCallback,userContext); },
GetSpeedDropDown:function(strSize,strRim,succeededCallback, failedCallback, userContext) {
return this._invoke(TyreSearch.get_path(), 'GetSpeedDropDown',false,{strSize:strSize,strRim:strRim},succeededCallback,failedCallback,userContext); }}
TyreSearch.registerClass('TyreSearch',Sys.Net.WebServiceProxy);
TyreSearch._staticInstance = new TyreSearch();
TyreSearch.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; TyreSearch._staticInstance._path = value; }
TyreSearch.get_path = function() { return TyreSearch._staticInstance._path; }
TyreSearch.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); }
TyreSearch._staticInstance._timeout = value; }
TyreSearch.get_timeout = function() { 
return TyreSearch._staticInstance._timeout; }
TyreSearch.set_defaultUserContext = function(value) { 
TyreSearch._staticInstance._userContext = value; }
TyreSearch.get_defaultUserContext = function() { 
return TyreSearch._staticInstance._userContext; }
TyreSearch.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; TyreSearch._staticInstance._succeeded = value; }
TyreSearch.get_defaultSucceededCallback = function() { 
return TyreSearch._staticInstance._succeeded; }
TyreSearch.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; TyreSearch._staticInstance._failed = value; }
TyreSearch.get_defaultFailedCallback = function() { 
return TyreSearch._staticInstance._failed; }
TyreSearch.set_path("/tyres/TyreSearch.asmx");
TyreSearch.GetSizeDropDown= function(onSuccess,onFailed,userContext) {TyreSearch._staticInstance.GetSizeDropDown(onSuccess,onFailed,userContext); }
TyreSearch.GetRimDropDown= function(strSize,onSuccess,onFailed,userContext) {TyreSearch._staticInstance.GetRimDropDown(strSize,onSuccess,onFailed,userContext); }
TyreSearch.GetSpeedDropDown= function(strSize,strRim,onSuccess,onFailed,userContext) {TyreSearch._staticInstance.GetSpeedDropDown(strSize,strRim,onSuccess,onFailed,userContext); }
