var fDesc=new Array(); fDesc[0] = "Voice Shaper is a speech pre-processor for SSB transceivers. It receives the voice signal from the microphone connected to the soundcard, and sends the processed audio back to the soundcard in real time. The configuration procedure of the DSP functions is interactive: the program records your voice, then it plays the recording back through the processor and allows you to adjust the settings and immediately hear the effect of your changes. Real-time spectrum and histogram displays provide the insight into the processor operation and make the configuration process even easier."; 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 = ''; } }