var fDesc=new Array();
fDesc[0] = "PETRAPro
Data Analysis Software for Hand-held Data Recorders
PETRAPro is the software for analyzing data gathered with the TDC Ultra hand-held data
collectors.
The industry standard for processing turning movement data, thousands of users have
come to appreciate PETRAPro's stability, ease of use and comprehensive reporting
capability.
In addition to Turning Movement data, PETRAPro also processes data for Roundabout
Movements, Vehicle Classification, Multi-direction Gap, Stop Sign Delay, Signalized
Intersection Delay, Spot Speed and Saturation Flow Rate.";
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 = '';
}
}