]> ruin.nu Git - ndwebbie.git/blob - htdocs/misc.js
Need to escape whitespaces when using /x
[ndwebbie.git] / htdocs / misc.js
1 function toggleVisibility(id) {
2         var obj=document.getElementById(id);
3         if (obj.style.display=='none') {
4                 obj.style.display='';
5         }
6         else {
7                 obj.style.display='none';
8         }
9 }