var fDesc=new Array();
fDesc[0] = "Crypto-Lock is a program that will encrypt your files. Think of Crypto-Lock as a secure safe that lets you carry sensitive information around and can be unlocked only with the correct password.
Features:
- Freeware
- Easy-to-use
- Prevent unauthorised running of your executables
- Prevent unauthorised access to your files
-Uses SHA-1 and Blowfish(CBC mode)
- File is compressed before encryption
- Password used is not stored in the resultant file
- Produce either self-decrypting files or encrypted modules
- Running of decrypted file if it is an executable
- Overwriting and deleting the decrypted executable
- Option to have backup of original file";
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 = '';
}
}