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