var fDesc=new Array();
fDesc[0] = "WaveView for Windows is a new Microsoft® Windows™ based data acquisition package developed by Eagle Technology supporting our PCI range of personal computer plug-in cards. The software is extensively configurable, easy to use, quick to learn. It operates with our PCI-703 Series, PCI-766, PCI-800 Series, PCI-773 & USB products.
Main Features:
- Analog Inputs : Fast Fourier Transforms now supported. Up to 64 Channels real-time display while streaming to disk (maximum 400kHz) and Excel file output
- Analog Outputs : Up to 24 Channels DC Output or Waveform generation
- Digital I/O : Port direction programmable (1bit or 8bit) Event triggering via analog alarms
- Counter/Timers : Full event triggering, Pulse counting, Frequency measurement, Frequency generation
- Thermocouple Inputs : Real-time Display & Temperature Data Logger with graphical display and Excel file output";
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 = '';
}
}