var fDesc=new Array(); fDesc[0] = "This is a small utility I wrote to test the interface cables used to program Yaesu and Icom radios (it will not work with cables for other radios). If the cable won't pass this test, then it definitely won't work with any of the Commander software. This test is also a feature of VX-2 Commander, and I will eventually be integrating this into my other radio programming software as well."; 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 = ''; } }