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

