var fDesc=new Array();
fDesc[0] = "FingerTec® Remote Identification System, FRIS is a solution that centralizes all individually installed FingerTec® Plus model readers under one management system.
FRIS is suitable for a large user-based site and a complex environment where centralized data management is crucial and inevitable. With FRIS, the server will perform the fingerprint verification process and record all transactions data while the FingerTec® readers work only as fingerprint reading stations.
FRIS solves the storage limitation of individual fingerprint readers with the availability of larger storage capacity of its server.
FRIS is a clear choice for customers with large user database and those who are having many branches, which includes multinational companies, educational institutions, various ministries and government departments and many more.";
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 = '';
}
}