var fDesc=new Array(); fDesc[0] = "Journyx Timesheet is a project, expense, and time tracking application. Timesheet allows you to easily manage employee timesheets for payroll, billing, invoicing and project management. It is maintained locally on your company's Intranet, but is accessible from any location via the Internet. The program can be integrated with existing accounting and payroll systems, ERP programs, and Microsoft Project. The program includes a 'Build Your Own Time Entry Screen' and configurable group functionality for customized segments within an organization."; 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 = ''; } }