2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Import from DCARF SVN

This commit is contained in:
azammitdcarf
2008-10-15 04:42:53 +00:00
parent f988e1dad9
commit 059453c14a
9 changed files with 2291 additions and 0 deletions

15
js/showhide.js Normal file
View File

@@ -0,0 +1,15 @@
function showHide(element,me)
{
if (document.getElementById(element).style.display == "none" || !document.getElementById(element).style.display)
{
document.getElementById(element).style.display = 'inline';
document.getElementById(me).innerHTML = 'Hide details';
}
else
{
document.getElementById(element).style.display = 'none';
document.getElementById(me).innerHTML = 'Show details';
}
}