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

