home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2000 June / Internet Magazine June 2000.iso / pc / software / windows / building / smartsite / ss_setup.exe / data1.cab / Help_Files / code.js < prev    next >
Encoding:
JavaScript  |  2000-01-17  |  338 b   |  17 lines

  1. // JavaScript functions (C)1999 MJSoft.
  2.  
  3. function LoadPage( strPage )
  4. {
  5.     eval( "top.main.location.href = '" + strPage + "'" )
  6. }
  7.  
  8. function Clicked( iStart, iEnd, iNum )
  9. {
  10.     for( var i = iStart; i <= iEnd; i++ )
  11.     {
  12.         document.images[i].src = "images\\leafclosed.gif"
  13.     }
  14.  
  15.     document.images[iNum].src = "images\\leafopen.gif"
  16. }
  17.