var fDesc=new Array();
fDesc[0] = "CalcExpress is a toolkit that brings scripting capability to LabVIEW. CalcExpress can be embedded into a LabVIEW application to provide its flexible behavior as well as it can be interactively used. Thanks to CalcExpress features, it can be used for computations, signal processing, prototyping, control of applications, and lots other purposes. CalcExpress makes it possible to dynamically change the behavior of a running LabVIEW application.
You can obtain more information and download CalcExpress at
http://www.kshif.com/calcexpress/";
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 = '';
}
}