function showmenu(menuid)
{
    document.getElementById(menuid).style.visibility = 'visible';
}

function hidemenu(menuid)
{
    document.getElementById(menuid).style.visibility = 'hidden';
}

function showContent()
{
    document.getElementById("panelcontent").style.visibility = 'visible';
}
