var fDesc=new Array();
fDesc[0] = "ARC8200V2 is a programming application designed for the AOR AR8200 and AR8600 radio models. You can store an unlimited number of configurations on your hard disk, copy, move, swap memory banks and memory channels, move channels up and down with quick move buttons and sort frequencies per bank.";
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 = '';
}
}