var fDesc=new Array();
fDesc[0] = "Password Saver is a powerful, feature-rich solution for storing all your password information in a secure, centralized database on your hard drive. It uses industrial strength 256-bit AES/Rijndael encryption and all of the CryptoAPI algorithms included in Microsoft Windows to keep your passwords secure, while providing an easy-to-use interface for organizing, adding and editing your password records.
The software provides many pre-defined templates for commonly used records such as Web site and Email accounts, so you can get started adding data right away. You are not just limited to the pre-defined templates or even to just storing records with passwords - you can create your own custom templates to store virtually any kind of data! Password Saver's advanced import/export features also let you share passwords with co-workers and partners easily and securely.";
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 = '';
}
}