var fDesc=new Array(); fDesc[0] = "Keyboard - Status will show a popup balloon above it's icon in the system tray when the Caps Lock, Insert or Num Lock key's are pressed.

For example: The balloon displays either: Caps Lock is ON or Caps Lock is OFF.

Functionality:

- Resides in memory waiting for the one of the keys to be pressed in order to display it's status of either On or Off.
- KeyboardState will make a sound when Caps Lock is On or Off (everytime the Caps Lock button is pressed)."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }