var fDesc=new Array();
fDesc[0] = "BenchLink Waveform Builder Pro Software is a waveform creation tool.
Main features:
- Free-hand, point, and line-draw modes to create custom shapes.
- Equation editor allows you create waveforms with exact polynomials.
- Sequencing editor allows you to build and arrange composite waveforms to optimize your design.
- Filtering and windowing functions allow you to smooth transitions between waveforms.";
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 = '';
}
}