var fDesc=new Array();
fDesc[0] = "This application is designed for programming the ID-51 PLUS with a PC. It provides a tree view of the memory map, CH bank and other programmable region in the hardware; you can easily modify the values by double clicking on a memory column.
This cloning software is only for the ID-51 PLUS and the ID-51 Icom 50th Anniversary Limited Edition transceivers. You cannot use it with the standard ID-51A and ID-51E transceivers.";
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 = '';
}
}