var fDesc=new Array();
fDesc[0] = "TopSecret desktop allows you to create and edit/view your data on the desktop computer. Use it to store passwords, credit card information, web account logins/passwords, and other personal data. An encryption algorithm with 128 bit keys keeps it safe.
Main features:
-File Import/Export.
-Change the TopSecret password on the PC.
-Supports synchronization with multiple desktops (home/office).
-Windows help.
-Categories can be created and edited on the desktop.
-Full Print capabilities on the desktop software.
-Any open records automatically close after password timeout is reached.
-TopSecret Desktop supports multiple users.
-Record count displayed for each viewed category.";
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 = '';
}
}