var fDesc=new Array(); fDesc[0] = "Hudson Tray Tracker is an application which helps monitoring projects configured on a Hudson server (a continuous integration server). It sits in the Windows tray to display an icon showing the worst build status. That way, you know as soon as something goes wrong with one of the projects you are monitoring."; 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 = ''; } }