home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / XML Writer 2.12 / XML writer.exe / file0042.bin / helpfiles.js < prev    next >
Encoding:
JavaScript  |  2003-04-14  |  422 b   |  16 lines

  1. // expands and hides text
  2. // swaps images on expand
  3.  
  4. function expandIt(x) {
  5.     whichElement = eval(x);
  6.     whichImage = event.srcElement;
  7.     if (whichElement.style.display == "none") {
  8.         whichElement.style.display = "";
  9.         whichImage.src = "images/arrow_down.gif";        
  10.     }
  11.     else {
  12.         whichElement.style.display = "none";
  13.         whichImage.src = "images/arrow_right.gif";
  14.     }
  15. }
  16.