var fDesc=new Array(); fDesc[0] = "SX-METRO is a program that allows you to download the stored measurements from Metrix digital oscilloscopes. You can acquire, record, and process the curves from the oscilloscope, import screenshots, save or restore configurations, view the curves in real time, communicate with the oscilloscope via an RS232 serial link or TCP/IP network, transfer the data into Excel or into a text file, perform mathematical processing such as FFT of the signal viewed, and more."; 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 = ''; } }