/* * menuexp.js - implements an expandable menu based on a HTML list * Author: Marty Afkhami (http://www.afkhami.net) Marty@afkhami.net */function SwitchMenu(ItemsId) {    var menuItems = document.getElementById(ItemsId);    menuItems.style.display = (menuItems.style.display == "block") ? "none" : "block";    return false;}