var fDesc=new Array();
fDesc[0] = "Hpsetool is a simple, easy-to-use disk encryption tool that encrypts and password protects your removable and external disks, including USB drives, memory sticks, flash cards, PCMCIA drives and more. It allows you choose a secure password and a gold lock or a silver lock to encrypt logical drives. It uses 256-bit AES algorithm for maximum security and does not store your password on any media. Its powerful encryption ensures that only you can open an encrypted logical drive.
Key features:
- 256-bit AES encryption
- secure password support
- external disk support
- file system support
- designed for Windows 2000 or above etc.";
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 = '';
}
}