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

// Our info window content
var infoTabs = [
new GInfoWindowTab("Tab #1", "<a href='http://www.res.com.sg' target='_blank'>いちばんぼし</a><p>1 Kim Seng Promenade<br />#B1-07 Great World City<br />Singapore 237994</p><p>E-mail <a href='mailto:greatworld_city@ichibanboshi.com.sg'>greatworld_city@ichibanboshi.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);
}
}
