<!DOCTYPE html>
<!-- see http://code.google.com/apis/maps/documentation/v3/introduction.html -->
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Google Maps JavaScript API Example</title>
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
<script type="text/javascript">
function initialize() {
    var latlng = new google.maps.LatLng(11.563789, 104.917459),
        map = new google.maps.Map(document.getElementById('map_canvas'), {
            zoom: 14,
            center: latlng,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        }),
        marker = new google.maps.Marker({
            position: latlng, 
            map: map, 
            title: "Wikipedia"
        });   
    google.maps.event.addListener(marker, 'click', function() {
        parent.fb.start('http://en.wikipedia.org/wiki/Phnom_Penh', 'controlsPos:tr');
    });
}
</script>
</head>
<body onload="initialize()" style="margin:0; padding:0;">
<div id="map_canvas" style="width: 500px; height: 500px;"></div>
</body>
</html>