var fDesc=new Array();
fDesc[0] = "This application can be used to edit, save, and export the TS-480 information such as Memory, Menu, and Auto Mode frequencies.
It can be with the Kenwood Network Command System for remote operation of the TS-480. You are also able to write the configured data on the PC to the transceiver.";
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 = '';
}
}