// JavaScript Document created 17thJuly 2009 by Fraser Patullo

window.onload = prepPage;
window.unload = GUnload();
function prepPage(){
	if (GBrowserIsCompatible()) {
       	var  map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
		var point = new GLatLng(56.686500, -3.00000);
        map.setCenter(point, 9);
		var marker = new GMarker(point);
        map.addOverlay(marker);
		GEvent.addListener(marker, "click", function()
			{
				marker.openInfoWindowHtml('<p>Kirriemuir Golf Club,<br /> Sheilhill Road, Kirriemuir</p>');
			})
	}
}