var fDesc=new Array();
fDesc[0] = "Under Lock and Key is a password and descreet information manager. It can be used to store passwords, account information, or anything else that you would like to keep secured in an encrypted file.
Features:
* Easy to use and maintain
* Favorites section for common items
* Copy logins, passwords, or URL’s to clipboard
* Launch URL’s directly from application
* Export to encrypted XML, Plain XML, or CSV files
* Comprehensive Help included";
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 = '';
}
}