// JavaScript Document //<![CDATA[        if (GBrowserIsCompatible()) {       function createMarker(point,html) {        // ======== Add a "directions" link ======       // html += '<br> <a href="http://maps.google.com/maps?saddr=&daddr=' + point.toUrlValue() + '" target ="_blank">Directions</a>';              var marker = new GMarker(point);        GEvent.addListener(marker, "click", function() {          marker.openInfoWindowHtml(html);        });        return marker;      }	  // CENTRALISING THE MAP. IT'S CURRENTLY CENTRALISED ON ZAMBIA - I hope they don't mind! http://www.satsig.net/maps/lat-long-finder.htm IS A GOOD PLACE TO GET LAT/LONG REFS FROM.      var map = new GMap2(document.getElementById("map"));      map.addControl(new GLargeMapControl());      map.addControl(new GMapTypeControl());      map.setCenter(new GLatLng(-13.1339, 27.8493),5);// ZAMBIA	  var point = new GLatLng(-15.4145, 28.2809);      var marker = createMarker(point,'Cheshire Home Society<br />Lusaka Branch (#1250)<br /><br />Lusaka, Zambia');      map.addOverlay(marker);    }        else {      alert("Sorry, the Google Maps API is not compatible with this browser");    }    // This Javascript is based on code provided by the    // Blackpool Community Church Javascript Team    // http://www.commchurch.freeserve.co.uk/       // http://www.econym.demon.co.uk/googlemaps/    //]]>