//<![CDATA[
    
    if (GBrowserIsCompatible()) {
    
      var baseIcon = new GIcon();
          baseIcon.iconSize=new GSize(32,32);
          baseIcon.shadowSize=new GSize(56,32);
          baseIcon.iconAnchor=new GPoint(16,32);
          baseIcon.infoWindowAnchor=new GPoint(16,0);
          
      var golf = new GIcon(baseIcon, "http://maps.google.com/mapfiles/kml/pal3/icon23.png", null, "http://maps.google.com/mapfiles/kml/pal3/icon23s.png");

    
     

      function createMarker(point,html,icon) {
        var marker = new GMarker(point,icon);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }

      // Display the map, with some controls and set the initial location 
      var map = new GMap2(document.getElementById("googlemap"));
      //map.addControl(new GLargeMapControl());
      //map.addControl(new GMapTypeControl());
	  map.addControl(new GSmallZoomControl());
      map.setCenter(new GLatLng(42.010761,21.405707),15);
    
      // Set up three markers with info windows 
    
      var point = new GLatLng(42.010761,21.405707);
      var marker = createMarker(point,'<div style="width:150px">Macedonian Cricket Association</div>', golf)
      map.addOverlay(marker);

      

    }
    
    // display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }

    //]]>