var fDesc=new Array(); fDesc[0] = "This program is an application to share the lines of the 3rd party TAPI driver of a PBX system easily to the network. So every network client is able to include all TAPI functions of the driver in the local applications with a remote TAPI driver. You also get an "occupied" display in which you can recognize if users are calling or absent. With this "occupied" display you can start calls to other participants, pick up calls from other participants or redirect calls to others."; 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 = ''; } }