var fDesc=new Array();
fDesc[0] = "Password Profiler offers to save passwords for your favorite sites. It also offers a comprehensive way to manage those passwords.
It is a method to easily change the saved data.
Main features:
- Logs into Web sites automatically
- Fills long registration and checkout forms quickly and easily
- Saves log-ins to your favorite sites
- Shares log-ins between IE and Firefox
- Maintains multiple profiles allowing you to fill forms based on your needs, like whether you want to use personal or business information";
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 = '';
}
}