// Toggle displaying of club map
function toggle_Map() {
	thediv = document.getElementById("clubmap");
	thediv.style.display = (thediv.style.display == "block") ? "none" : "block";
}

function areyousure(message) {
	return confirm(message);
}