var fDesc=new Array();
fDesc[0] = "BCOMM CryptCommander is a file/text encryption program enabling encryption and decryption of files or folders.
The program uses the best and most proven cryptographic algorithms such as 3DES, DES, Blowfish, Rijndael (AES), Twofish, RC4.
Files can be compressed before encryption and a user defined password can be set for the encryption/decryption process.
Encrypted files can be hidden into images or movies.";
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 = '';
}
}