// 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 MALAYSIA - 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(4.4340, 108.2373),5); // MALAYSIA 2236      var point = new GLatLng(5.7331, 117.3045);      var marker = createMarker(point,'Sabah Eye Care Programme<br />(#2236)<br /><br />Kota, Kinabalu, Malaysia');      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/    //]]>