var fDesc=new Array();
fDesc[0] = "Passminder is a tool to ease browsing the web by storing all your usernames and passwords in one place.
Main Features:
- Updated to fix horrible looking window on XP/Vista!
- Encrypted password file for secure storage
- Quick access to login details via the Site name selector.
- Multiple users have a separate login to keep their details private.
- Single users have the option of automatic login when Passminder is started.
- 'Always on Top' option keeps Passminder in front of browser windows.";
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 = '';
}
}