var fDesc=new Array(); fDesc[0] = "The Datapath DL8 desktop app allows you to configure the Datapath dL8 distribution amplifier. When you first start the application, it will search for a dL8 connected to your computer and display the status of the current input. Once the application has detected an dL8, the main status screen is displayed. The program displays a schematic view of the rear panel of the dL8 to assist in identifying the connectors and allows you to configure various settings."; 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 = ''; } }