//<![CDATA[       
     function load() {
      if (GBrowserIsCompatible()) {       
        var map = new GMap2(document.getElementById("map"));
        //var address = 'florence road, ealing, London';
        
        map.setCenter(new GLatLng(51.47953475351443, -0.31295367431640625), 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 Syon' + '</b></font>' + '<br />' + 'The Garden House' + '<br />' + 'Syon Park' + '<br />' + 'Brentford' +'<br />' + 'Middx' + '<br />' + 'TW8 8JF' + '<br />' + '020 8840 4838');
		
   
        GEvent.addListener(marker, "click", function() {    marker.openInfoWindowHtml('<font color=#009900><b>' + 'Buttercups Syon' + '</b></font>' + '<br />' + 'The Garden House' + '<br />' + 'Syon Park' + '<br />' + 'Brentford' +'<br />' + 'Middx' + '<br />' + 'TW8 8JF' + '<br />' + '020 8840 4838');});
         }
    }
  //]]>