var map=null,geocoder=null,marker=null;function initialize(){if(GBrowserIsCompatible()){map=new GMap2(document.getElementById("map_canvas"));map.addControl(new GLargeMapControl);map.addControl(new GOverviewMapControl(new GSize(160,120)));geocoder=new GClientGeocoder;anker=window.location.hash.substr(1);if(anker!=""){document.getElementById("frm").address.value=anker;showAddress(anker)}else map.setCenter(new GLatLng(47.2626918,11.3946996),13)}} function showAddress(a){a+=" , innsbruck";document.getElementById("lo").innerHTML='<a href="'+document.location.href+'">'+decodeURI(document.location.href)+"</a>";document.getElementById("lu").innerHTML='<a href="'+document.location.href+'">'+decodeURI(document.location.href)+"</a>";geocoder.getLocations(a,addAddressToMap)} function addAddressToMap(a){map.clearOverlays();if(!a||a.Status.code!=200)alert("Adresse wurde nicht gefunden");else{place=a.Placemark[0];point=new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);map.setCenter(point,16);marker=new GMarker(point);map.addOverlay(marker);place.AddressDetails.Accuracy>=6||alert("ungenaue bzw. falscher Stra\u00dfenname")}};
