var fDesc=new Array(); fDesc[0] = "Using a UDLP2 Link Shell, any UDLP2-compliant bot can communicate with any other UDLP2-compliant bot -- in fact, the current version of the link shell allows up to 15 bots to be in a "chat room" together. Additionally, the UDLP2 protocol is open and published on this website, so any bot programmer is free to make their own bots UDLP2 compatible."; 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 = ''; } }