var fDesc=new Array();
fDesc[0] = "Time Guardian is an employee time tracking software designed to minimize payroll management.
Automatically totals hours for 100 employees (upgradeable), has easy-to-use Setup Wizard for installation and maintenance and multiple hardware options include barcode, mag stripe, proximity, biometric, and fingerprint readers.
Popular payroll interfaces: ADP, QuickBooks (Gold Developer), Paychex, Peachtree, and more (50 payroll interfaces available) and exports to excel. Eliminates manual calculation errors associated with time cards.";
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 = '';
}
}