var fDesc=new Array();
fDesc[0] = "ReACT is a unique application designed to automate the password reset and synchronization process across the entire enterprise. Unlike other tools, ReACT eliminates the need to reset a password to a temporary value. ReACT allows the end user to reset their own password at any time without the need to change their password again at sign-on. ReACT virtually eliminates password reset related calls to the Help Desk.
ReACT helps close the security exposures opened by a forgotten password. It securely authenticates user requests for a password reset and then establishes a permanent, immediately usable password on all effected systems.";
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 = '';
}
}