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;
	/* Change the plus or minus sign of the actuator, depending of the menu's visibility */
	/*actuator.parentNode.style.listStyleImage = (menu.style.display == "none") ? "url(/images/plus.gif)" : "url(/images/minus.gif)";*/
	/* Show or hide the menu */
	menu.style.display = (menu.style.display == "block") ? "none" : "block";
}
function resizeIframe(iframeID) 
{
	if(self==parent) return false; /* Checks that page is in iframe. */
else 
	if(document.getElementById&&document.all) /* Sniffs for IE5+.*/ 
		var FramePageHeight = framePage.scrollHeight + 10; /* framePage <BR>is the ID of the framed page's BODY tag. The added 10 pixels prevent an unnecessary scrollbar. */ 
		parent.document.getElementById(iframeID).style.height=FramePageHeight; 
	/* "iframeID" is the ID of the inline frame in the parent page. */
} 
