var fDesc=new Array();
fDesc[0] = "Desktop TimeBiller is a time and billing tracking program.
Main features:
- Multiple clients and projects tracking
- Expense tracking
- Define clients with associated projects, tasks, contacts, and rates
- Multiple rates for each client including fixed rate
- Customizable view with grouping by any column, sorting and filtering
- Display entries by day, week, month, or a custom period
- Optional duration granularity (minimum duration interval) and break time
- Multiple views of data
- Handy entry copy feature for repetitive tasks for the rest of the week, to a specified date or end date
- Track billable, non billable, billed, and paid tasks
- Customizable PDF or XPS reporting
- Export data to CSV or XML for further analysis
- Import time entries using XML
- Drop lists for efficient data entry
- Optional pre-filled drop lists
- Create entries using multiple timers
- Custom fields for time entry and expense";
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 = '';
}
}