Page is a not externally linkable
gph - 12:19 am on Jul 10, 2002 (gmt 0)
function toggle(Sub) {
I'm actually using the above script in my scripts_DOM like this:
thisMenu = document.getElementById(Sub).style
if (thisMenu.display == "block") {
thisMenu.display = "none"
} else {
thisMenu.display = "block"
}
}