var SearchKeywords=function() {
SearchKeywords.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SearchKeywords.prototype={
GetHLibKeywordList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(SearchKeywords.get_path(), 'GetHLibKeywordList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
SearchKeywords.registerClass('SearchKeywords',Sys.Net.WebServiceProxy);
SearchKeywords._staticInstance = new SearchKeywords();
SearchKeywords.set_path = function(value) { SearchKeywords._staticInstance._path = value; }
SearchKeywords.get_path = function() { return SearchKeywords._staticInstance._path; }
SearchKeywords.set_timeout = function(value) { SearchKeywords._staticInstance._timeout = value; }
SearchKeywords.get_timeout = function() { return SearchKeywords._staticInstance._timeout; }
SearchKeywords.set_defaultUserContext = function(value) { SearchKeywords._staticInstance._userContext = value; }
SearchKeywords.get_defaultUserContext = function() { return SearchKeywords._staticInstance._userContext; }
SearchKeywords.set_defaultSucceededCallback = function(value) { SearchKeywords._staticInstance._succeeded = value; }
SearchKeywords.get_defaultSucceededCallback = function() { return SearchKeywords._staticInstance._succeeded; }
SearchKeywords.set_defaultFailedCallback = function(value) { SearchKeywords._staticInstance._failed = value; }
SearchKeywords.get_defaultFailedCallback = function() { return SearchKeywords._staticInstance._failed; }
SearchKeywords.set_path("/SearchKeywords.asmx");
SearchKeywords.GetHLibKeywordList= function(prefixText,count,onSuccess,onFailed,userContext) {SearchKeywords._staticInstance.GetHLibKeywordList(prefixText,count,onSuccess,onFailed,userContext); }

