    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(53.800651, -4.064941), 6);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		
		var atherstone = new GMarker(new GLatLng(52.563187, -1.579735));
		GEvent.addListener(atherstone, 'mouseover', function(){ 
            atherstone.openInfoWindowHtml("<span class='gtext'><b>A &amp; A Recycling Services</b><br />Bentley Sawmills, Bentley Common, Bentley,<br />Atherstone, Warwickshire. CV9 2HJ<br />Tel: 01827 722300<br />Fax: 01827 715155</span>"); 
          });
		GEvent.addListener(atherstone, 'mouseout', function(){ 
            atherstone.closeInfoWindow(); 
          });
		map.addOverlay(atherstone);
      }
    }
