
    // Initialisation function
    function load() {
    
      if ( !GBrowserIsCompatible() )
        return;
        
      // Create the map
      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GSmallMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter( new GLatLng( 54.062058, -1.284188 ), 13 );

      var point = new GLatLng( 54.062058,-1.284188 );
      var markerInfo = '<strong>The Greenkeepers Training Committee</strong><br /><br /><a href="http://maps.google.co.uk/maps?f=q&hl=en&geocode=&time=&date=&ttype=&q=The+GTC,+Aldwark+Manor,+Aldwark,+Alne,+York,+North+Yorkshire,+YO61+1UF&ie=UTF8&t=h&om=1&ll=54.062637,-1.284199&spn=0.006977,0.013669&z=16&iwloc=A">Click here for further information and directions.</a>';
      var marker = createMarker( point, markerInfo );
      map.addOverlay( marker );
      marker.openInfoWindowHtml( markerInfo );
    }

    // Creates a marker at the given point with the given info label
    function createMarker( point, info, id ) {
    
      var marker = new GMarker( point );
      
      GEvent.addListener( marker, "click", function() {
        marker.openInfoWindowHtml( info );
      } );
      
      return marker;
    }
