var fDesc=new Array(); fDesc[0] = "When you think about your day or week, does it feel like it is getting "filled-up" with work? We thought so too. That's why Klok shows your time entries as blocks that fill up your days very much like your calendaring application works. Most applications just let you enter the total time spent on a project per day in a spreadsheet view. The problem with that approach is that you potentially lose some valuable information. For example, if you or your staff spend four hours each on two separate projects within a day, it might be useful to know that the time was spent in 16 individual 30 minute entries as you toggled between projects numerous times thoughout the day. By having this information, you can identify inefficiencies that might be totally lost if you didn't track this level of detail."; 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 = ''; } }