// *** GoogleMap Settings

  function loadGoogleMaps() {
    if (GBrowserIsCompatible()) {

      	var map = new GMap2(document.getElementById("map"));
   	//map.addControl(new GSmallMapControl());
   	//map.addControl(new GMapTypeControl());
        	map.setCenter(new GLatLng(48.39900544292035, 11.65736665725708), 9);

            //***Infokasten bei Oeffnen einblenden
            //var map = new GMap2(document.getElementById("map"));
            //map.setCenter(new GLatLng(48.40997544292035, 11.75736665725708), 13);
            //map.openInfoWindowHtml(map.getCenter(),
            //document.createTextNode("Florales"));


            //***Neue Icons
            var icon = new GIcon();
            icon.image = "http://labs.google.com/ridefinder/images/mm_20_green.png";
            icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
            icon.iconSize = new GSize(12, 20);
            icon.shadowSize = new GSize(22, 20);
            icon.iconAnchor = new GPoint(6, 20);
            icon.infoWindowAnchor = new GPoint(5, 1);

            var icon2 = new GIcon();
            icon2.image = "http://labs.google.com/ridefinder/images/mm_20_yellow.png";
            icon2.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
            icon2.iconSize = new GSize(12, 20);
            icon2.shadowSize = new GSize(22, 20);
            icon2.iconAnchor = new GPoint(6, 20);
            icon2.infoWindowAnchor = new GPoint(5, 1);

   	var point = new GLatLng(48.40997544292035, 11.75736665725708);
         // Florales
         var marker = new GMarker(point, icon);
   	map.addOverlay(marker);

    	//GEvent.addListener(marker, "mouseover", function() {
    	//	marker.openInfoWindowHtml("<p style=\"text-align: left;\"><strong>myWebwerk<\/strong><br />- print/online <br />MedienDesign<\/p>");
      	//});
      }
    }

//*** /GoogleMap Settings

//*** Maps Popup-Zoom

    var win=null;

    onerror = stopError;
    function stopError(){
             return true;
    }

    function G1161449004(){
             myleft=20;
             mytop=20;
             settings="width=640,height=480,top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,dependent=no";
             win=window.open("http://www.webunddruckwerk.de/webservice/mapspopup.html","zoommap",settings);
             win.focus();

    }

//*** /Maps Popup-Zoom
