mike.morgan%oregonstate.edu 2f64c41288 Updated CSS and adjusted Search.
git-svn-id: svn://10.0.0.236/trunk@193102 18797224-902f-48f8-a5cc-f745e15eee43
2006-03-28 02:37:22 +00:00

13 lines
323 B
JavaScript

function toggle(show,hide,display) {
document.getElementById(show).style.display = display;
document.getElementById(hide).style.display = "none";
}
function hide(id) {
document.getElementById(id).style.display = "none";
}
function show(id,display) {
document.getElementById(id).style.display = display;
}