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