var fDesc=new Array(); fDesc[0] = "This is the control software tool for the TS-990S transceiver. It is used to control the TS-990S via a PC. The transceiver data, such as the memory, the menu, and the Auto Mode frequency, can be edited and saved using a PC via this software, and the data can also be written 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 = ''; } }