var fDesc=new Array();
fDesc[0] = "WFM Reader is a simple application designed to read WFM files produced by Tektronix/Rigol oscilloscopes.
Main features:
- Tabbed interface.
- Zooming/Scrolling.
- Legend with Min/Max.
- CSV / Image exporting.
- No 3rd party dependencies for straight recompile.
- Full Source Code (see "Files" section).
- WFMReader Library for easy access to the data in WFMs.
- RectUtils library for easy manipulation with rectangles, points and ranges.";
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 = '';
}
}