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