var fDesc=new Array();
fDesc[0] = "DigitalPersona One Touch I.D. Software is a high-performance fingerprint identification for fast “touch-and-go” authentication.
Main features:
- High Speed Identification — Fast, accurate identification of users with just a single touch.
- High Scalability — Quickly look up individuals from within groups of thousands of users.
- Enhanced Security — Eliminate “double-dipping” fraud.
- Reduced IT Costs — No need to provision usernames, ID numbers, PINs or swipe cards.
- Increased User Productivity — No need to remember/enter usernames, ID numbers, PINs or swipe cards.
- Fast, Efficient Development — .NET programming interface for easy application development.
- Economical Licensing Model — No per-template or per-user license fees.";
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 = '';
}
}