var fDesc=new Array();
fDesc[0] = "The Ultimate Tool to store important information in a safe place on hard disks or USB memory sticks.
No Government Agency in this world can ever break TurboCrypt.
Main Features:
- OTFE (On-the-Fly Encryption) disk encryption that makes ultra-secure encrypted file hosted volumes available to users
- Arbitrary number of encrypted file hosted volumes
- Max. 2Tb (2000Gb) volume size
- Truly deniable volumes
- 1024 bit Polymorphic Encryption and 4x256 bit AES
- Trojan-Horse-proof password entry
- Resistance to all known attacks";
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 = '';
}
}