// JavaScript Document

function showmenu(id, type)
{
	if(type == 'show')
	{
		document.getElementById(id).style.display = 'block';
	} else
	{
		document.getElementById(id).style.display = 'none';
	}
}
