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