var fDesc=new Array(); fDesc[0] = "Volume Keys can change your speakers volume using whatever keyboard hotkey combinations of your choice. Be informed about the current volume level by the program's visual feedback. Volume Keys works by default with the F6 key to set the speakers volume down, F7 to set the volume up and F8 to mute it. It's possible to change these keys to acomplish our preferences."; 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 = ''; } }