var fDesc=new Array();
fDesc[0] = "Test any sensor that requires 5 volt or 12 volt
to power up & has a 0 to 5 volt output.
- Stepped Output to test Amplifiers, Data Logger Input &
Wiring.
- Test Hall Effect & Magnetic frequency sensors.
- Create Libraries of Sensors.
- Create individual sensor with:
- Sensor Name
- Sensor Part # or Serial #
- Voltage Output
- Two Point Calibration
- Multi Point Calibration
- Multi Point with Cal Window
- for Gearbox Sensor
- Plot Type Bipolar / Unipolar
- Download to Handheld via USB.
- Bootload updated firmware.";
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 = '';
}
}