var fDesc=new Array();
fDesc[0] = "A perfect compliment to Childcare Manager. Automate your attendance records for employees and children. Time Manager allows you to know immediately when a child or employee arrives at or leaves your center. This information is conveniently displayed in the Childcare Manager's Child & Employee QuickViews, child attendance records, and employee timesheets. Time Manager is as easy to install as it is to use. Setting up takes less than 5 minutes.
In addition to tracking time, parents can check their balances, and employees can check their hours worked. You can track who clocked a child in or out. You can enhance security and give your parents peace of mind by using Time Manager to open/close a secure electronic door with valid access codes.";
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 = '';
}
}