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

