var fDesc=new Array();
fDesc[0] = "PlotLab is a set of very fast data plotting / charting / graphing components. Add sophisticated interactive graphs, charts, plots, and waterfalls to your VB.NET, C#, Visual C , Delphi and C Builder applications with minimal effort.
Applications include: real time data acquisition, signal analysis, digital signal analysis, video analysis, data visualization and more.
The library includes a Chart-like Plot component (Scope), a Waterfall component and a Multi Waterfall component.";
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 = '';
}
}