var fDesc=new Array();
fDesc[0] = "SecureNTFS can protect your secret files and folders on an external drive by creating invisible, secure password-protected storage.
Main features:
- Keep your secret files invisible on all platforms including Windows, Mac and Linux.
- Quickly open your hidden files with instant storage access.
- Protect your data by hiding your files and directories without changing the file structure, eliminating the risk of file corruption.
- Protect your files directly on your removable drive with no installation required.
- Get access to your hidden files wherever and whenever you want, from any computer at any location without the need for administrator rights.
- Install your files on any removable storage device including removable hard drives, flash drives, or any other removable storage device of your choosing.
- Protect and store an unlimited number of files with the amount of storage only being limited by the size of your external hard drive.
- Automatically protect your secret files by releasing your external drive from your computer. The files will be close and secured automatically.";
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 = '';
}
}