function goToPage(strUrl)
{
	window.location = strUrl;
}

var currentStatus = "";
function rollOver(tableCell, over)
{
	if(over)
	{
		currentStatus = tableCell.className;
		tableCell.className = "Hover";
	}
	else
	{
		tableCell.className = currentStatus;
		currentStatus = "";
	}
}

function ShowSubMenu(menuId, evt)
{
	var subMenu = document.getElementById("SubMenu" + menuId);
	if(subMenu)
	{
		if(subMenu.style.display == "none")
		{
			subMenu.style.display = "";
		}
		else
		{
			subMenu.style.display = "none";
		}

		var e = (window.event)?window.event:evt;
		e.cancelBubble = true;
	}
}