<script src="http://maps.google.com/?file=api&v=2&key=..."></script>
<div id="map" style="width:100%;height:100%"></div>
<script>
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(37.5042, 127.0049), 16);
map.setMapType(G_SATELLITE_MAP);
map.openInfoWindow(map.getCenter(),
document.createTextNode("Hello, world"));
}
}
</script>