var fDesc=new Array();
fDesc[0] = "DataTrac Software is a "must have" accessory if you are using a Leland Legacy sample pump. Only DataTrac, with your PC, allows you to operate your pump from a PC, program the pump for single or multiple sample runs in the field, and manage pump sampling data for complete documentation of sampling history.
Main features for the software:
- Program a sampling operation from a PC
- Calibrate pump flow to a primary standard
- Display the operating state including flow rate, temperature, atmospheric pressure, run time, and battery status of the connected pump
- Create and save a sampling program without a pump connected to the PC
- Document sampling history using the sample setup feature
- Print a history fi le containing pump run time data";
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 = '';
}
}