﻿function showMenu(strMenuID)
{
    // highlight the menu
    var liMenu = document.getElementById(strMenuID);
    if (liMenu) {
        liMenu.className = 'active'
    }
}
