var fDesc=new Array(); fDesc[0] = "Screenhero is a remote desktop application that lets you work with other people in your team. The program can be used to do programming with others - both of you get your own mouse cursor, and are in control of the IDE. You can also chat with your teammates using the program."; 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 = ''; } }