var fDesc=new Array();
fDesc[0] = "ID Tracker's main purpose in life is to help find and identify new trunk system IDs.
Features:
- Supported scanners:
PSR-500/600, PRO-106/197, BCT8, BCT15, BC250D, BC296D, BR330T, BC346XT, BCD396T, BCD396XT, BC780XLT, BC785D, BC796D, BC898T, BCD996T (also, non-US versions of these scanners)
- Supports Motorola Type I, Type II, Type IIi, EDACS, EDACS SCAT, LTR and Motorola P25 trunked systems.
- Unlimited IDs/Frequencies in search modes.
- Supports monitoring multiple systems.
- Supports recording of scanner audio to WAV files with no gaps. Audio is time stamped with support for comments.
- Provides a method of performing ID limit searches.
- Provides unlimited lockouts.
- Can be used to expand the number of tags.";
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 = '';
}
}