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