var fDesc=new Array(); fDesc[0] = "The Qbus Serial Manager is the program you will use to program the Qbus system. With this program you can create outputs (on/off, timers, sequences, scenes, clocks, alarms,...) and define how to control these outputs (which button on a switch / motion detector / etc. turns on which output). All of these settings will be saved in a .qdb (Qbus DataBase) file."; 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 = ''; } }