var fDesc=new Array(); fDesc[0] = "A neat little 16 button DTMF keypad that allows you to send DTMF tones out your soundcard. Allows you to send the DTMF tones to your radio for those of you who do not have DTMF microphones. Uses the RTS on the serial Com2 to key the radio automatically. Works great if you are already set up with SSTV or PSK-31 using the RTS on Com2."; 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 = ''; } }