initial revision

[SVN r15197]
This commit is contained in:
Paul Mensonides
2002-09-08 09:24:32 +00:00
parent 76e9f915b7
commit cb61e12209
7 changed files with 746 additions and 0 deletions

24
docs.1/scripts.js Normal file
View File

@ -0,0 +1,24 @@
function init(id) {
document.getElementById(id).style.display = "none";
return;
}
function toggle(id) {
var x = document.getElementById(id);
x.style.display = x.style.display == "none" ? "block" : "none";
return;
}
function change(obj) {
obj.style.textDecoration = "underline";
obj.style.cursor = "hand";
obj.style.cursor = "pointer";
obj.style.color = "orange";
return;
}
function revert(obj) {
obj.style.textDecoration = "none";
obj.style.color = "black";
return;
}