var fDesc=new Array();
fDesc[0] = "Traffic radar verification and calibration software.
Features:
-Works just like a tuning fork, but utilizes the PC Speakers
-Works for all radar bands (even European) Selectable frequencies.
-Settings for MPH or KPH units
-Verifies calibration of both stationary and moving-mode radar
-Accurate to < 1Hz (less than .05 MPH)
-Can verify proper operation throughout the whole operating range
-Perfect for the test bench, on installed on the patrol car laptop (external speaker recommended)
-Digital Audio Technology provides accurate, consistent results every time";
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 = '';
}
}