function menuShow(div2Show)
{
	document.getElementById(div2Show).style.visibility = 'visible';
}

function menuHide(div2Show)
{
	document.getElementById(div2Show).style.visibility = 'hidden';
}