var fDesc=new Array();
fDesc[0] = "NI-DAQmx driver software goes far beyond a basic DAQ driver to deliver increased productivity and performance and is one of the main reasons National Instruments continues to be the leader in virtual instrumentation and PC-based data acquisition.
- A single programming interface for programming analog input, analog output, digital I/O, & counters on hundreds of multifunction DAQ hardware devices.
- NI Measurement & Automation Explorer1, DAQ Assistant1, and and LabVIEW SignalExpress LE1 software to save time in configuration, development, and data logging.";
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 = '';
}
}