var fDesc=new Array();
fDesc[0] = "Cross Match Technologies, Inc. is a global
provider of best-in-class, multimodal biometric
identity management solutions.
Cross Match Mobile Essentials SDK enables image finding and stabilization, image quality assessment and Auto Capture™ functionality for quick and easy image collection of two irises, and is the most advanced and easy-to-use iris capture solution in the market place.";
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 = '';
}
}