var fDesc=new Array(); fDesc[0] = "Memori features :
- Load from Rig writes the contents of checked memory channels to program
- Save to File saves all channels into a text file
- Load from File loads them from the file to the program
- Save to Rig writes the checked channel frequencies from the program to the rig
- Stop stops the rig loading
- Clicking the channel number brings the memory frequency forth and opens the rig with the settings of the channel."; 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 = ''; } }