﻿function updateLocation(a){$.ajax({type:"POST",url:webService+"Geo.asmx/GeoTarget",data:'{"Key":"'+geoKey+'", "ISO":"'+a+'"}',contentType:"application/json; char=utf-8",dataType:"json",success:function(){$(document).trigger("geoLocationUpdated",[a])}})}function geoTarget(){var a=true;if(google.loader.ClientLocation!=null){if(google.loader.ClientLocation.address.country_code){updateLocation(google.loader.ClientLocation.address.country_code);a=false}}if(a){$.ajax({type:"POST",url:webService+"Geo.asmx/GetCountryCode",data:'{"Key":"'+geoKey+'"}',contentType:"application/json; char=utf-8",dataType:"json",success:function(b){$(document).trigger("geoLocationUpdated",[b])},error:function(){$(document).trigger("geoLocationFailed")}})}}var jQueryIsLoaded=false;try{var jqueryIsLoaded=jQuery;jQueryIsLoaded=true}catch(err){jQueryIsLoaded=false}if(!jQueryIsLoaded){google.load("jquery","1.4.3")}google.setOnLoadCallback(geoTarget);
