var fDesc=new Array();
fDesc[0] = "The Armadillo Analyzer is the software tool used to obtain and analyze data recorded by an Armadillo Timer Box (or AGM).
The Analyzer can perform the following functions:
- Set up Armadillo Timer Boxes before a job
- Download pig passage files
- Download raw data files
- Delete files on the AGMs
- Automatically calculate pig passage times with provisions for manual adjustment
- Export user-defined data to a user-defined format for correlation with Inline Inspection (ILI) tool logs.
- Batch firmware updates to the Armadillo Timer Boxes";
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 = '';
}
}