var fDesc=new Array(); fDesc[0] = "SDRSharp Net Remote is a network remote control plugin for SDRSharp. After you install the plugin, you must start SDRSharp and check if the plugin control panel is shown on the left side of the main window and if the 'Enable' option is ticked. If the 'Serial' option is enabled in the control panel, the commands will be read from the serial port."; 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 = ''; } }