no message

This commit is contained in:
Frank Dillon 2003-12-20 08:02:24 +00:00
parent 2f7d12d02a
commit 37a3f3e6d0
12 changed files with 2147 additions and 159 deletions

5
www/extras/swapLayers.js Normal file
View file

@ -0,0 +1,5 @@
function operateHidden(newId,oldId){
document.getElementById(oldId).style.display='none';
document.getElementById(newId).style.display='';
return newId;
}