  //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {

	 function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }

      // Display the map, with some controls and set the initial location 
      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GLargeMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng(53.387193,-2.345624),13);
    
      // Set up three markers with info windows 
    
      var point = new GLatLng(53.387193,-2.345624);
      var marker = createMarker(point,'<div style="width:240px">ADE Recruitment Limited, Oakfield House, Oakfield Road, Altrincham, Cheshire, WA15 8EW</div>')
      map.addOverlay(marker);
	


      }
    }


    //]]>