var fDesc=new Array(); fDesc[0] = "ChartPro is a free project management application that is used to create and display projects using a Work Breakdown Structure (WBS) chart. It is a tool that defines a project and groups the project's discrete work elements in a way that helps organize and define the total work scope of the project."; 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 = ''; } }