var fDesc=new Array(); fDesc[0] = "VolControl has two modes of operation: The default mode is to register three hotkey combinations with Windows which correspond to the volume up, volume down and Volume Mute commands. The second mode will usurp the volume control keys on many media keyboards to the same effect. This allows the user to more granularly control the volume settings."; 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 = ''; } }