var fDesc=new Array(); fDesc[0] = "TrackPro Planner is a TrackPro Calibration and Maintenance Plugin. The plugin is designed to provide a view into future Action Items.
Features include:
-creates a complete Action Item Schedule to any date in the future;
-has two user-selectable fields;
-report is grouped by month and year;
-each group can be print on a separate page;
-can print an Action Item Schedule in chart format in chart format;
-selectively print calibration, maintenance, or validation items."; 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 = ''; } }