var fDesc=new Array();
fDesc[0] = "The VW Data Recorder is a recording readout for pluck-type vibrating wire sensors, RTDs, and thermistors. Simple to operate, the Recorder stores up to 2000 readings and can transfer them to a PC for processing with a spreadsheet.
To obtain a reading, switch on the power, connect sensor signal cable to the Recorder’s panel-mounted binding posts, and press the Enter key. To record a reading, press the Enter key a second time. Each reading is identified by date, time, and an ID number.
You can choose frequency units (Hz or Hz squared), sweep frequency, RTD or thermistor, and ID numbers from 0 to 31. There is also a microstrain mode for use with Slope Indicator's spot-weldable strain gauge.
To transfer readings to your PC, connect the serial interface cable between the recorder and the PC, and run the Data Recorder Manager program. Specify a file name and location for the data, and two mouse clicks later, the data is on your PC, ready for your spreadsheet program.";
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 = '';
}
}