function ToggleMenu(show, menu)
{
	var menuDropdown = eval('document.all["' + menu + 'Dropdown"]');
	var menuSelection = eval('document.all["' + menu + 'Selection"]');
	
	if (show)
	{
		//Set the position of the drop down menu
		menuDropdown.style.left = menuSelection.offsetLeft;
		menuDropdown.style.top = menuSelection.offsetParent.offsetParent.offsetParent.offsetParent.offsetTop + menuSelection.offsetHeight;
		
		if (menuDropdown.offsetWidth < menuSelection.offsetWidth)
			menuDropDown.style.pixelWidth = menuSelection.offsetWidth;
		
		//Open the menu
		menuDropdown.style.visibility = "visible";
	}
	else
	{
		//Close the menu
		menuDropdown.style.visibility = "hidden";
	}
}