<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>CityGuide PLACES</title>
    <script src="http://maps.google.com/maps?file=api&amp;v=2"
            type="text/javascript"></script>
    <script type="text/javascript">
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(%f, %f), 13);

        // Create our "tiny" marker icon
        var icon = new GIcon();
        icon.image = "http://labs.google.com/ridefinder/images/mm_20_blue.png";
        icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
        icon.iconSize = new GSize(12, 20);
        icon.shadowSize = new GSize(22, 20);
        icon.iconAnchor = new GPoint(6, 20);
        icon.infoWindowAnchor = new GPoint(5, 1);

        // Create our "tiny" marker icon
        var icon1 = new GIcon();
        icon1.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
        icon1.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
        icon1.iconSize = new GSize(12, 20);
        icon1.shadowSize = new GSize(22, 20);
        icon1.iconAnchor = new GPoint(6, 20);
        icon1.infoWindowAnchor = new GPoint(5, 1);


    

        // Add 10 markers to the map at random locations

       
       	var point = new GLatLng(%f,%f);
        map.addOverlay(new GMarker(point, icon1));

