var fDesc=new Array();
fDesc[0] = "Jeevan Pramaan uses the Aadhaar platform for biometric authentication of the pensioner.
A successful authentication generates the Digital Life Certificate which gets stored in the Life Certificate Repository. The Pension Disbursing Agencies can access the certificate online.
Provide your biometrics, either a fingerprint or Iris and authenticate your self.
(Jeevan Pramaan uses the Aadhaar Platform for online biometric authentication )";
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 = '';
}
}