var fDesc=new Array();
fDesc[0] = "ARC536 PRO is a program designed to work with the Uniden BCD436HP and BCD536HP scanners. It includes features such as:
- True Excel style editor with cut/copy/paste options
- Add any frequency or talkgroup that is not in the built-in database
- Add/Modify a control channel frequency
- Add a trunk system that is not in the built-in database
- Add Nascar and other race frequencies
- Add Service Searches to your BCDx36HP.";
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 = '';
}
}