
//<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
			 var map = new GMap2(document.getElementById("map"));
        map.addControl(new GLargeMapControl());
       // map.addControl(new GMapTypeControl());
			//	map.addControl(new GScaleControl());
        map.setCenter(new GLatLng(52.379580,4.891918), 15);

				
				// Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon();
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.iconSize = new GSize(20, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);
        baseIcon.infoShadowAnchor = new GPoint(18, 25);

        // Creates a marker whose info window displays the letter corresponding
        // to the given index.
        function createMarker(point) {
          // Create a lettered icon for this point using our icon class
          var icon = new GIcon(baseIcon);
          icon.image = "http://www.google.com/mapfiles/markerA.png";
          var marker = new GMarker(point);

          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml("Bellissima<br>Herenmarkt 93a<br>Amsterdam");
          });
					
					
          return marker;
				
        }
				
				map.addOverlay(createMarker(new GLatLng(52.379580,4.891918)));
      }
    }

 //]]>

