var fDesc=new Array();
fDesc[0] = "Access Card Utility (ACU) is an application provided by HHS that will enable you to renew your smart card digital certificates at your Windows desktop. To use the ACU:
- Your certificates must be valid and have not already expired
- Your certificates must be eligible for renewal
- You must know your smart card PIN
- ActivClient with the latest hot fixes (ActivClient v6.2.0.179 or greater) must be installed on your computer.";
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 = '';
}
}