var fDesc=new Array();
fDesc[0] = "Password Manager Pro is a secure vault for storing and managing shared sensitive information such as passwords, documents and digital identities of enterprises. The benefits of deploying Password Manager Pro include:
Eliminating password fatigue and security lapses by deploying a secure, centralized vault for password storage and access
Improving IT productivity many times by automating frequent password changes required in critical systems
Providing preventive & detective security controls through approval workflows & real-time alerts on password access
Meeting security audits and regulatory compliance such as SOX, HIPAA and PCI";
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 = '';
}
}