//<![CDATA[       
     function load() {
      if (GBrowserIsCompatible()) {       
        var map = new GMap2(document.getElementById("map"));
        //var address = 'florence road, ealing, London';
        
        map.setCenter(new GLatLng(51.59210905720819, -0.5447317077636719), 15);
        
       
        
        
        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon();
        baseIcon.image= "images/icon_buttercup5.png";
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.iconSize = new GSize(22, 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);
        
        var marker = new GMarker(map.getCenter(), new GIcon(baseIcon));
        
        map.addControl(new GSmallMapControl());
        //map.addControl(new GMapTypeControl());
		map.addOverlay(marker);
		marker.openInfoWindowHtml('<font color=#009900><b>' + 'Buttercups Chalfont' + '</b></font>' + '<br />' + 'The Lodge' + '<br />' + 'Chalfont Business Park' + '<br />' + 'Chalfont St Peter' + '<br />' + 'Bucks' + '<br />' + 'SL9 0AG' + '<br />' + '020 8840 4838');
		
   
        GEvent.addListener(marker, "click", function() {    marker.openInfoWindowHtml('<font color=#009900><b>' + 'Buttercups Chalfont' + '</b></font>' + '<br />' + 'The Lodge' + '<br />' + 'Chalfont Business Park' + '<br />' + 'Chalfont St Peter' + '<br />' + 'Bucks' + '<br />' + 'SL9 0AG' + '<br />' + '020 8840 4838');});
         }
    }
  //]]>
