var fDesc=new Array();
fDesc[0] = "Instantly locks or hides any file or folder using a password with a click. Once a file or folder is locked, or hidden, it cannot be read or used by anyone until it is unlocked or shown again.
Special Features:
- Works with any file
- Preview of hidden pictures
- Department of Defense 5220.22-M compliant
- Lock or hide files or folders with one click
- Works on all Windows operating systems including Vista and 64-bit versions";
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 = '';
}
}