var fDesc=new Array();
fDesc[0] = "The ProfileValidator is an optional feature that addresses the number one obstacle to the successful deployment of any self-service password reset solution: getting your users to enroll.
When used with myPassword, the ProfileValidator will run on each user's PC at logon, and can be configured to either require the user to complete their profile before they are allowed to continue, or simply suggest that the profile be updated. In this case, the user will be reminded on each logon until the updates have been completed.";
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 = '';
}
}