home *** CD-ROM | disk | FTP | other *** search
/ Enter 1999 September / ENTER9_2.bin / prog_8 / JBInfo / sidebar_jb3.js < prev    next >
Encoding:
Text File  |  1999-05-08  |  466 b   |  22 lines

  1. <!--
  2.    if (document.images) {
  3.       arrow_on = new Image();
  4.       arrow_on.src = "jbinfo/nav_arrow_red.gif";
  5.  
  6.       arrow_off = new Image();
  7.       arrow_off.src = "jbinfo/nav_arrow_blue.gif";
  8.    }
  9.  
  10.    function imgOn(imgName) {
  11.       if (document.images) {
  12.          document[imgName].src = arrow_on.src;
  13.       }
  14.    }
  15.  
  16.    function imgOff(imgName) {
  17.       if (document.images) {
  18.          document[imgName].src = arrow_off.src;
  19.       }
  20.    }
  21. // -->
  22.