function showMenu(menuName, state)
{
	var theElement = document.getElementById(menuName);

	if (state == true)
	{
		theElement.style.visibility="visible";
	}
	else
	{
		theElement.style.visibility="hidden";
	}
}

function showStart(type)
{
	var point;
	if (type == "friday")
	{
		point = new GPoint(-0.1517486572265625, 51.502919240234235);
		map.openInfoWindowHtml(point, "<span style=\"white-space:nowrap\"><img src=\"/wp-content/themes/blue/images/lfns_default_big.jpg\" style=\"margin-right:5px;\" width=\"100\" height=\"75\" align=\"left\" /><h1 style=\"font-family: arial; font-size: 14px;\" align=\"center\">LFNS<br/>Start Point</h1><p style=\"font-family:arial; font-size:12px;\">( Wellington Arch )</p></span>");
	}
	else if (type == "sunday")
	{
		point = new GPoint(-0.15415191650390625, 51.50444189675956);
		map.openInfoWindowHtml(point, "<img src=\"/wp-content/themes/blue/images/sunday_stroll_default.jpg\" width=\"100\" height=\"75\" style=\"margin-right:5px;\" align=\"left\" /><h1 style=\"font-family: arial; font-size: 14px;\" align=\"center\">Sunday Stroll<br/>Start Point</h1><p style=\"font-family:arial; font-size:12px;\">( Serpentine Road )</p>");
	}
	else
	{
		point = new GPoint(-0.15415191650390625, 51.50444189675956);
		map.openInfoWindowHtml(point, "<span style=\"white-space:nowrap\"><img src=\"/wp-content/themes/blue/images/oneway.jpg\" width=\"100\" height=\"75\" style=\"margin-right:5px;\" align=\"left\" /><h1 style=\"font-family: arial; font-size: 14px;\" align=\"center\">Sunday Stroll<br/>Start Point</h1><p style=\"font-family:arial; font-size:12px;\">( Serpentine Road )</p></span>");
	}
}
