var fDesc=new Array();
fDesc[0] = "DriveCrypt securely and easily protects all proprietary data on notebooks and desktop computers 100% of the time without users having to think about security.
Main features:
- Encrypts containers / partitions and external devices.
- 1344 Bit ultra-strong encryption.
- Hides data in fake disks or music files.
- Encrypts any kind of devices (external disk, CDS, DVD, and USB sticks).";
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 = '';
}
}