
function dropdown(menuname,command)
{
	if (command == 'on')
	{
		document.getElementById(menuname).style.display = 'block';
	}
	else if (command == 'off')
	{
		document.getElementById(menuname).style.display = 'none';
	}
}

