var fDesc=new Array(); fDesc[0] = "Zelscope is a Windows program that converts your PC into a dual-trace storage oscilloscope and spectrum analyzer. It uses your computer's sound card as analog-to-digital converter, presenting a real-time waveform or spectrum of the signal - which can be music, speech, or output from an electronic circuit. Zelscope features the interface of a traditional oscilloscope, with conventional gain, offset, time base, and trigger controls. As a real-time spectrum analyzer, Zelscope can display the amplitude and phase components of the spectrum."; 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 = ''; } }