var map_infos="Claude Cultot<br>16 rue du Baron de l'Horme<br>52 500 Bussières les Belmont";
var map_lat=47.752223;
var map_lng=5.549769;
var map_zoom=14;

function googleMapCenter (map)
{
    map.setCenter (new GLatLng (map_lat, map_lng), map_zoom);
}

function googleMapDisplayInfos (map)
{
    map.addOverlay (new GMarker (new GLatLng (map_lat, map_lng)));
    map.openInfoWindowHtml (new GLatLng (map_lat, map_lng), map_infos);
}

function googleMapInitialize ()
{
    if (GBrowserIsCompatible ())
    {
	var map = new GMap2 (document.getElementById ("map_canvas"));
	googleMapCenter (map);
	googleMapDisplayInfos (map);
	GEvent.addListener (map, "click", function () {googleMapDisplayInfos (map);});
	GEvent.addListener (map, "dblclick", function () {googleMapCenter (map);});
	map.setUIToDefault ();
    }
}

function googleMapUnload ()
{
    alert ("unload");
    GUnload ();
}

