var fDesc=new Array();
fDesc[0] = "RSI ScopeComm is an Oscilloscope control program that enables you to download and view waveforms from many Tektronix Oscilloscopes.
Features:
- Waveforms are saved in comma-separated-value (csv) format for easy viewing in spreadsheet programs.
- Recall saved waveforms to graphs.
- Allows for four different scope configurations.
- Add, subtract, multiply, or divide any waveform by a constant or another waveform.
- Compare two waveforms by applying a linear regression fit.
- Automatically take measurements, such as frequency, mean, and rise time, at user-defined intervals.";
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 = '';
}
}