var fDesc=new Array();
fDesc[0] = "iGuard Employee Import Utility is an useful utility for iGuard Terminal. The function of this utility is to import a large number of employee records into iGuard . This program utilizes our API SDK.
If your database in PC already contain the Employee's information, this utility will save you from re-enter the employee information when installing iGuard. Just export the employee's to a CSV file and import with this utility, the iGuard employee database will be ready in few seconds.";
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 = '';
}
}