home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / Vyzkuste / itweak / itwkule.exe / itweaku.chm / html / javascript / master.js < prev   
Encoding:
Text File  |  2000-03-07  |  674 b   |  25 lines

  1. function doSection (secNum){
  2.     //display the section if it's not displayed; hide it if it is displayed
  3.     if (secNum.style.display=="none"){secNum.style.display=""}
  4.     else{secNum.style.display="none"}
  5. }
  6.  
  7. function noSection (secNum){
  8.     //remove the section when user clicks in the opened DIV
  9.     if (secNum.style.display==""){secNum.style.display="none"}
  10. }
  11.  
  12. function doExpand(paraNum,arrowNum){
  13.     //expand the paragraph and rotate the arrow; collapse and rotate it back
  14.     if (paraNum.style.display=="none")
  15.     {
  16.         paraNum.style.display="";
  17.         arrowNum.src="images/arrowdn.gif";
  18.     }
  19.     else
  20.     {
  21.         paraNum.style.display="none";
  22.         arrowNum.src="images/arrowrt.gif";
  23.     }
  24. }
  25.