var fDesc=new Array(); fDesc[0] = "VoiceKeyer is a digital voice keyer which allows selection of the sound card used to interface to the radio. The program allows you to set up as many different “profiles” or sets of predefined messages as you want. Each profile can have up to 10 different messages which are played back by clicking on a button on the program screen."; 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 = ''; } }