//<![CDATA[
    function load(zoomIndex) {
		
		
    if (GBrowserIsCompatible()) { 

      // A function to create the marker and set up the event window
      // Dont try to unroll this function. It has to be here for the function closure
      // Each instance of the function preserves the contends of a different instance
      // of the "marker" and "html" variables which will be needed later when the event triggers.    
  
	  // ==================================================
      // A function to create a tabbed marker and set up the event window
      function createTabbedMarker(point,html1,html2,label1,label2) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowTabsHtml([new GInfoWindowTab(label1,html1), new GInfoWindowTab(label2,html2)]);
        });
        return marker;
      }
	  
 
	  var myZoomIndex = parseFloat(zoomIndex);
      // ==================================================
      // Display the map, with some controls and set the initial location 
      var map = new GMap2(document.getElementById("mapContact"));
      map.addControl(new GLargeMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng(53.1968, -2.4937), myZoomIndex);
    
	  // ==================================================
      // Set up the tabbed markers
      var point = new GLatLng(53.1968, -2.4937);
      var marker = createTabbedMarker(point, '<div style="width:240px"><p><strong>DJM Logistics (UK) Limited</strong><br>Road One<br>Winsford Industrial Estate<br>Winsford Cheshire CW7 3QF</p></div>', '<div style="width:240px"><p>telephone: <strong>01606 861 972</strong><br>fax: <strong>01606 550540</strong><br>email: <strong><a href="mailto:enquiries@djmlogistics.com">enquiries@djmlogistics.com</a></strong></p></div>', "Address", "Contact");
      map.addOverlay(marker);           
    }    
    // display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }
}
//]]>