var fDesc=new Array(); fDesc[0] = "If you are writing programs in LabVIEW or planning to do so, this collection will speed up you access to the power of LabVIEW.
The "LabVIEW Demo" collection will workout you memory in the most common LabVIEW functions (more than 150 of them) and if you wish you can read more about the functions from the "LabVIEW help file window" you will see this when answer the question given."; 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 = ''; } }