// script für googlemaps 
// Imperia-Modul - MAP100


function loadmap(wert) {
    if (GBrowserIsCompatible()) {
    var centerlng = new Array();
    centerlng["aib"] = new GLatLng(47.85699975952744, 12.028055191040039); // 
    centerlng["gra"] = new GLatLng(51.37782124036408, 9.020934104919434); // 
    centerlng["hah"] = new GLatLng(47.862456215549486, 12.029557228088379); // 
    centerlng["bar"] = new GLatLng(51.38163822706163, 9.019775390625); //
    centerlng["bgl"] = new GLatLng(51.377566763266664, 9.020462036132812); //
    centerlng["bbr"] = new GLatLng(53.905588, 9.88966); // 
    centerlng["sta"] = new GLatLng(50.10932, 10.991866); // 
    centerlng["okm"] = new GLatLng(48.10492, 11.567313); //
    centerlng["nkm"] = new GLatLng(48.17121, 11.585072); //
    centerlng["bgl"] = new GLatLng(47.98688, 11.361286); //
    centerlng["eil"] = new GLatLng(53.578649, 10.049007); //
    centerlng["neu"] = new GLatLng(54.09005676662384, 10.828657150268555); //
    centerlng["ros"] = new GLatLng(47.85864107581872, 12.363181114196777); //
    centerlng["roh"] = new GLatLng(47.865994, 12.120278); //
    centerlng["bgl"] = new GLatLng(47.601519, 12.979876); //
    centerlng["bhz"] = new GLatLng(47.948705, 12.188562); //
    centerlng["aks"] = new GLatLng(47.98703506792667, 11.361290216445923); //
    var map = new GMap2(document.getElementById("map"));
    var infobox = "<div>Hier finden Sie unser Klinikum.<\/div>"
    var icon = new GIcon();
    icon.image = "/css_js/ptp/chrome/icon.googlemap.png";
    icon.iconAnchor = new GPoint(5, 5);
    icon.infoWindowAnchor = new GPoint(17, 1);
    var marker = new GMarker(centerlng[wert], icon);
    map.setCenter(centerlng[wert], 13);
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.addOverlay(marker);
    //marker.openInfoWindowHtml(infobox);
    GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml(infobox);
    });
  }
}

