var fDesc=new Array();
fDesc[0] = "ARC XT is THE preferred and best selling programming software for the Uniden XT series, ARC-XT-PRO adds powerful data logging, digital audio recording and a fantastic bandscope!
Main features:
- ARC-XT supports the following scanner models: BCD396XT , BC346XT , BCD996XT and BCT15X.
- ARC-XT includes the most versatile and most feature rich editor available on the market.
- ARC-XT combines the best of 2 worlds! With ARC-XT you can directly access (*) the RadioReference.com Database and import over 9000(!) trunk and conventional systems directly into your scanner!
- QuickKey Overview: 'Drag and Drop' your systems/sites or groups in QuickKeys.
- Built in lookup utility to find Latitude & Longitude based on US address or zipcode";
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 = '';
}
}