			function ShowMenu(menuId, actuatorId)
				{
					/* Get the menu object (where the checkboxes are) */
					var menu = document.getElementById(menuId);
					
					/* Get the "actuator" (the button with the sport name) */
					var actuator = document.getElementById(actuatorId);

					/* Return if either is null */
    				if (menu == null || actuator == null) return;

    				/* Show or hide the menu */
					menu.style.display = (menu.style.display == "block") ? "none" : "block";
				}