var fDesc=new Array();
fDesc[0] = "Tivoli® Access Manager for Enterprise Single Sign-On (TAM ESSO) enables users to access all their applications with a single password. This award-winning solution simplifies password management, protects information with strong authentication, and secures kiosks and shared workstations.
- Reduce password-related help-desk costs by lowering the number of password reset calls
- Strengthen security and meet regulations through stronger passwords and an open authentication device interface with a wide choice of strong authentication factors supported out of the box
- Facilitate compliance with privacy and security regulations by leveraging centralized auditing and reporting capabilities
- Improve productivity and simplify the end-user experience by automating sign-on and using a single password to access all applications
- Enable comprehensive session management of kiosk or shared workstations to improve security and user productivity
- Enhance security by reducing poor end-user password behavior
- Extend IBM Tivoli® Access Manager for e-business’s fine-grained authorization and entitlements for Web applications, by fully addressing single sign-on across all types of applications
- Operating systems supported: Windows family";
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 = '';
}
}