/* If an element with ID "map" exists on the page it will be
   initialized to display a Google map, centered on the Vancouver Ki
   Society dojo location. */
function initialize_map()
{
    if (document.getElementById("map") == null)
    {
        return;
    }

    var map = new GMap(document.getElementById("map"))
    var location = new GPoint(-123.101745, 49.19247)

    map.centerAndZoom(location, 2);
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.openInfoWindowHtml(location, "104-11031 Bridgeport Rd.")
}
