var fDesc=new Array();
fDesc[0] = "RSA® Authentication Manager, the premier enterprise-class authentication solution and the power behind the RSA SecurID® product, provides this mission-critical component by scaling to support millions of users and protecting multiple applications and resources across numerous physical sites.
Features:
-Powers strong authentication for millions of RSA SecurID® end-users worldwide
-Supports enterprise class deployments with hundreds of simultaneous authentications
-Offers high performance and scalability with enterprise-level management features
-Provides centralized, easy and cost-effective administration
-Delivers robust logging and reporting capability
-Interoperates with more than 300 networking products and applications out of the box";
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 = '';
}
}