var fDesc=new Array(); fDesc[0] = "This software provides a tool to manage your to-do lists along with dated reminders and reporting. It shows "Past Due" items and "Due within 30 days" items in color coding right on your main dashboard so the tasks can be attended to.
This software provides standard folders for many apps and a way to customize the folders by the user based on their specific needs. Users can manage data records and monitor folders of data while generating reports on status.
This software provides standard workflows for many apps and a way to customize the workflows by the user based on their specific needs. Users can manage data records and monitor progress along the workflow while generating reports on status."; 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 = ''; } }