var PropertyInfoWebService=function() {
PropertyInfoWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PropertyInfoWebService.prototype={
getSearchResults:function(myOption,succeededCallback, failedCallback, userContext) {
return this._invoke(PropertyInfoWebService.get_path(), 'getSearchResults',false,{myOption:myOption},succeededCallback,failedCallback,userContext); },
getLatLonZoom:function(succeededCallback, failedCallback, userContext) {
return this._invoke(PropertyInfoWebService.get_path(), 'getLatLonZoom',false,{},succeededCallback,failedCallback,userContext); },
Get_Cities_Code:function(city,state,succeededCallback, failedCallback, userContext) {
return this._invoke(PropertyInfoWebService.get_path(), 'Get_Cities_Code',false,{city:city,state:state},succeededCallback,failedCallback,userContext); },
Get_Cities_LatLong:function(city,state,succeededCallback, failedCallback, userContext) {
return this._invoke(PropertyInfoWebService.get_path(), 'Get_Cities_LatLong',false,{city:city,state:state},succeededCallback,failedCallback,userContext); },
Get_City_Country_LatLong:function(city,country,succeededCallback, failedCallback, userContext) {
return this._invoke(PropertyInfoWebService.get_path(), 'Get_City_Country_LatLong',false,{city:city,country:country},succeededCallback,failedCallback,userContext); }}
PropertyInfoWebService.registerClass('PropertyInfoWebService',Sys.Net.WebServiceProxy);
PropertyInfoWebService._staticInstance = new PropertyInfoWebService();
PropertyInfoWebService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; PropertyInfoWebService._staticInstance._path = value; }
PropertyInfoWebService.get_path = function() { return PropertyInfoWebService._staticInstance._path; }
PropertyInfoWebService.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); }
PropertyInfoWebService._staticInstance._timeout = value; }
PropertyInfoWebService.get_timeout = function() { 
return PropertyInfoWebService._staticInstance._timeout; }
PropertyInfoWebService.set_defaultUserContext = function(value) { 
PropertyInfoWebService._staticInstance._userContext = value; }
PropertyInfoWebService.get_defaultUserContext = function() { 
return PropertyInfoWebService._staticInstance._userContext; }
PropertyInfoWebService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; PropertyInfoWebService._staticInstance._succeeded = value; }
PropertyInfoWebService.get_defaultSucceededCallback = function() { 
return PropertyInfoWebService._staticInstance._succeeded; }
PropertyInfoWebService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; PropertyInfoWebService._staticInstance._failed = value; }
PropertyInfoWebService.get_defaultFailedCallback = function() { 
return PropertyInfoWebService._staticInstance._failed; }
PropertyInfoWebService.set_path("/PropertyInfoWebService.asmx");
PropertyInfoWebService.getSearchResults= function(myOption,onSuccess,onFailed,userContext) {PropertyInfoWebService._staticInstance.getSearchResults(myOption,onSuccess,onFailed,userContext); }
PropertyInfoWebService.getLatLonZoom= function(onSuccess,onFailed,userContext) {PropertyInfoWebService._staticInstance.getLatLonZoom(onSuccess,onFailed,userContext); }
PropertyInfoWebService.Get_Cities_Code= function(city,state,onSuccess,onFailed,userContext) {PropertyInfoWebService._staticInstance.Get_Cities_Code(city,state,onSuccess,onFailed,userContext); }
PropertyInfoWebService.Get_Cities_LatLong= function(city,state,onSuccess,onFailed,userContext) {PropertyInfoWebService._staticInstance.Get_Cities_LatLong(city,state,onSuccess,onFailed,userContext); }
PropertyInfoWebService.Get_City_Country_LatLong= function(city,country,onSuccess,onFailed,userContext) {PropertyInfoWebService._staticInstance.Get_City_Country_LatLong(city,country,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(SearchResults) === 'undefined') {
var SearchResults=gtc("SearchResults");
SearchResults.registerClass('SearchResults');
}
if (typeof(SearchLatLonZoom) === 'undefined') {
var SearchLatLonZoom=gtc("SearchLatLonZoom");
SearchLatLonZoom.registerClass('SearchLatLonZoom');
}

