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

// Our info window content
var infoTabs = [
new GInfoWindowTab("Tab #1", "<a href='http://www.bon-food.com.sg/' target='_blank'>バーガー・キング</a><p>9 Raffles Boulevard<br />#01-47 Millenia Walk<br />Singapore 039596</p><p>E-mail <a href='mailto:marketing@bon-food.com.sg'>marketing@bon-food.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);
}
}
