function menuon(id)
{
	document.getElementById(id).style.visibility = "visible";
}

function menuoff(id)
{
	document.getElementById(id).style.visibility = "hidden";
}
