<html>
<head>
<script src="http://maps.google.com/?file=api"></script>
</head>
<body onload="hello()">
<div id="map" style="width:400px;height:300px"></div>
<script>
function hello() {
var map = new GMap2(document.getElementById("map"));
var point = new GLatLng(37.71859, 6.679688);
map.setCenter(point, 2);
var marker = new GMarker(point);
map.addOverlay(marker);
marker.openInfoWindowHtml("Hello World!");
}
</script>
</body>
</html>