<!-- Hide code from older browsers


    //<![CDATA[
    
    function load() {
    
      // unload any previous map data
      GUnload();
      
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(50.3675,-4.1465),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 with an info window display
        function createMarker(point, index) {
          var icon = new GIcon(baseIcon);
          icon.image = "http://www.google.com/mapfiles/marker.png";
          var marker = new GMarker(point, icon); 
          return marker;
        }
               
        // Add marker to the map
          var point = new GLatLng(50.3675,-4.1465);
          map.addOverlay(createMarker(point));
     }}
    
    //]]>

// Stop hiding code -->


