function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(1.314956,103.816159), 15);

// Our info window content
var infoTabs = [
new GInfoWindowTab("Tab #1", "<a href='http://www.lesamis.com.sg/' target='_blank'>カフェ・レザミ</a><p>1 Cluny Road <br />Visitor Center Singapore Botanic Gardens<br />Singapore 259569</p><p>E-mail <a href='mailto:cafelesamis@lesamis.com.sg'>cafelesamis@lesamis.com.sg</a></p>")

];

// Place a marker in the center of the map and open the info window
// automatically
var marker = new GMarker(map.getCenter());
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowTabsHtml(infoTabs);
});
map.addOverlay(marker);
marker.openInfoWindowTabsHtml(infoTabs);
}
}
