var fDesc=new Array(); fDesc[0] = "Teamwork Chat is a chat client that allows users to be in constant contact so that each team member is in the know. The program integrates directly with Teamwork Projects allowing you to turn decisions into tasks without leaving the chat environment. You can keep track of what's happening in multiple conversations with Teamwork Chat's timeline, rooms, and people sidebar tabs."; 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 = ''; } }