var fDesc=new Array();
fDesc[0] = "SBench 6 is a powerful and intuitive interactive measurement software. Besides the possibility to commence the measuring task immediately, without programming, SBench 6 combines the setup of hardware, data display, oscilloscope, transient recorder, analyzing functions and export functions under one easy-to-use interface. All current Spectrum cards are supported.
Oscilloscope like usage of digitizers, A/D cards and digital acquisition cards, transient recording and display of several GByte of data with a powerful streaming engine.";
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 = '';
}
}