var fDesc=new Array();
fDesc[0] = "Crimson512 is a powerful and easy to use file encryption software, with cloud-based protection for unmatched security against any cryptographic attack.
Main features:
-Easy: Right click to encrypt and decrypt any number of files, regardless of file types.
-Fast: Encryption engine optimized for multicore CPUs and fast drives.
-Convenient: Let your portable drive keep your password: no memorizing, no typing, no mistake. Learn more.
-Secure: 512-bit symmetric-key block cipher with cloud-based unbreakable protection.
-Reasonably priced: Per-use pricing for unlimited users and unlimited installations";
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 = '';
}
}