var fDesc=new Array();
fDesc[0] = "LockPhix is the ultimate combination between system locking tools and encryption
software. It provides a very versatile ScreenLock tool to lock your system showing
a customizable screen. You can then unlock your computer with Password, USB-stick
or keystroke. The second tool FileVault, provides you with an easy and safe way
to encrypt and decrypt files. The third tool PasswordSafe, is a database where you
can store your passwords and protect them with a single password.";
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 = '';
}
}