var fDesc=new Array(); fDesc[0] = "TSDisp is a utility intended to work alongside either the TeamSpeak or Ventrilo voice-comms products by displaying a stay-on-top window which shows the name of the current speaker. After installing, you can launch TSDisp or VentDisp; this will create a stay-on-top window which will display the current speaker’s name. You can right-click on this window, select “Channel Synch”, and then enter your name exactly as it is in the voice comms tool you’re using. This will allow the tool to find your current channel automatically."; 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 = ''; } }