var fDesc=new Array();
fDesc[0] = "LockTheFile is a tool that encrypts files with strong encryption alghorytm.
You may protect any information - text files, pictures, video and audio files from other eyes and ears, as many files as you need, without any limites.
The core functions of this program are:
Strong encryption alghorytm;
Handy user interface;
Ability to send locked files to your friends by email;
Ability to unlock received files;
Ability to lock/unlock files "on the fly";
Store administrative password at the secured place;
Scan hard disk drivers for locked files";
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 = '';
}
}