var fDesc=new Array();
fDesc[0] = "Punch It is a powerful, flexible and easy-to-use employee time management system. Punch It was created using FileMaker Pro, but does not require that you own FileMaker Pro for the single computer version.
Main features:
-Unlimited employees.
-Unlimited punches per employee
-Weekly or Bi-Weekly payroll reporting support
-Single, Double and Weekly overtime support
-Capture Holiday, vacation and sick pay
-Daily & Weekly reporting
-Powerful preferences make it extremely flexible
-Job logs allow you to track employee time against jobs for easier billing";
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 = '';
}
}