var fDesc=new Array(); fDesc[0] = "The Alpha 87A command protocol offers a full set to completely control the amplifier - including switching it on and off. However the amplifier status has to be polled. The software does this every 500 milliseconds by default or by any other value you set in the Programm Settings. The software also calculates the VSWR and displays it on the bottom panel as well as the Operating Frequency, Reflected Power, Grid Current, Peak Power and Input Power."; 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 = ''; } }