var fDesc=new Array(); fDesc[0] = "After a report has run successfully (i.e. all data stored to disk successfully), BizTrackIt will mark the time records included in the report as Reported. Eventually you’ll probably want to delete all the reported time records on your handheld to free up memory; to do this select the BizTrackIt Delete Reported menu item and follow the prompt."; 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 = ''; } }