function displaySubMenu(theTable)
{
	with(theTable);

	var tableObject

	tableObject = eval("document.getElementById('" + theTable +"')");

	if (tableObject.style.display == "none")
		tableObject.style.display = "block";
	else
		tableObject.style.display = "none";
}
