var fDesc=new Array(); fDesc[0] = "Sound Control is a small application that allows you to set hotkeys for applications using audio output. You can increase and decrease the sound volume of any combination of mixers using definable hot keys. It also has an on-screen display that can show information such as currently playing song/track - you can customize it's font, size, and position."; 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 = ''; } }