var fDesc=new Array();
fDesc[0] = "SCARABAY is a passwords manager.SCARABAY saves and protects logins, passwords, E-mails, URLs and any secret information.
Autofills web-page logins and passwords.
Fill login, password, E-Mail fields with drag-and-drop to any forms. Data file encryption. Data Password protecting.
A specially developed algorithm is used for enciphering.
Multi-user working mode lets any member user save their personal data and passwords separately with unique settings. So, personal accounts can be created for each member of your family.";
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 = '';
}
}