home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kompon / d6 / HHCOMP6.ZIP / Test.chm / master.js < prev    next >
Text File  |  2001-04-08  |  486b  |  27 lines

  1.  
  2. function ExpandSection(idVariable, ImgName){
  3.  
  4. if (idVariable.style.display=="none")
  5.     {
  6.         idVariable.style.display="" ;
  7.         if (ImgName.src != "") {ImgName.src = "dwnex.gif" ;}
  8.     }
  9. else{
  10.     idVariable.style.display="none" ;
  11.     if (ImgName.src != "") {ImgName.src = "rtex.gif" ;}
  12.      }
  13.  
  14.  
  15.  
  16. }
  17.  
  18. function ContractSection(idVariable, ImgName){
  19.  
  20.  
  21. if (idVariable.style.display==""){idVariable.style.display="none"}
  22.  
  23.   if (ImgName.src != "") {ImgName.src = "rtex.gif" ;}
  24. }
  25.  
  26.  
  27.