home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / CHIPCD_5_2001.iso / klub / animatemenu.js < prev    next >
Text File  |  1999-09-13  |  498b  |  15 lines

  1. function SelectMenuItem(LinkName,bON){
  2.     browserName = navigator.appName;
  3.     browserVer = parseInt(navigator.appVersion);
  4.     if (browserName == "Microsoft Internet Explorer" && browserVer >= 4)
  5.         if(bON){
  6.             window.document.links(LinkName).style.color="#000000";
  7.             //window.document.links(LinkName).style.textDecorationUnderline=true;
  8.         }
  9.         else{
  10.             window.document.links(LinkName).style.color="#646464";
  11.             window.document.links(LinkName).style.textDecorationUnderline=false;
  12.     
  13.         }
  14. }
  15.