var fDesc=new Array(); fDesc[0] = "ActiveChat is a new tabbed chat interface for KoL.

It is similar to (and based on) CDMoyer's Tabbed Chat, with some additional functionality and a brand new interface.
Tabbed Chat: Similar to the original script. Shows messages from different channels and private conversations in separate tabs.
It will auto-detect the channel you're in on startup, and optionally pre-load tabs for all the channels you're currently listening to. You can close tabs (and stop listening to channels) by double-clicking them."; 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 = ''; } }