


var map;
var locationLatLng=new GLatLng(25.044024,121.530981);

function loadGMap()
{
	if(GBrowserIsCompatible())
	{
	    map=new GMap2(document.getElementById("map"));
	    map.setCenter(locationLatLng,10);
	}
	map.addControl(new GSmallMapControl());
	var marker=new GMarker(locationLatLng);
	GEvent.addListener(marker,'click',markerClick);
	map.addOverlay(marker);
	markerClick();
}

function markerClick()
{
    html="<h3>Next Meeting</h3><p>Thursday, March 31, 2011 19:00 at No. 15, Section 1, BāDé Rd, Jhongjheng District, Taipei City</p>";
    map.openInfoWindowHtml(locationLatLng,html);
}

