var fDesc=new Array(); fDesc[0] = "Keeps track of your time and charges working on various activities. You can run queries over the time.
Schedule reminders. The program can remain open all the time without interfering with anything else, as all tables are closed.
Easily query for the time and charges for each day, each month, or whatever
Search the notes fields of the various tables for any words.
Elapsed time in minutes is shown in the taskbar as the program title when the program is minimized."; 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 = ''; } }