var fDesc=new Array();
fDesc[1] = "and workstation models and operating systems. HP Credential Manager 2.1 provides an interface to manage identity, credential, and multi-factor authentication through the HP ProtectTools Security Manager.";
fDesc[3] = "to others can be used as security system to identify peoples and to grant permissions. This awarded software allows developers to smoothly add fingerprint recognition to their software.";
fDesc[5] = "photo ID card solution. Free Edition offers an ideal photo ID management solution that is both powerful and easy-to-use.";
fDesc[6] = "biometrics, USB tokens, barcodes, fingerprint and retinal scanning, remote internet passwords and many more. You can also install a different logon screen, with three different types of themes for the logon window (\"Global Warming\", \"AIDS\" and \"Save Wild Life\").";
fDesc[7] = "your machine with only your voice print. www.windentify.com for live demo.";
fDesc[9] = ", biometrics security techniques, and biometric hardware.";
fDesc[10] = "using advance face recognition technology to verify the identity of the user and control the access to your PC account.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}