// 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 BURUNDI - 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(-3.3800,29.3574),7);    // BURUNDI	  var point = new GLatLng(-3.3719, 29.3555);      var marker = createMarker(point,'<a href="BDI1312.html" target="_self">Services for the<br />Handicapped People of Bujumbura<br />(#1312)</a><br />Bujumbura, Burundi');      map.addOverlay(marker); var point = new GLatLng(-3.3873, 29.3582);      var marker = createMarker(point,'<a href="BDI2245.html" target="_self">Programme National de<br />Lutte Contre l\'onchocercose (#2245)</a><br />Bujumbura, Burundi');      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/    //]]>