var fDesc=new Array();
fDesc[0] = "EasyHideFolders allows hiding files and folders from viewing, accessing and searching completely, so that only you know that those files or folders exist.
Main features
- hide files and folders from viewing, accessing, searching and deleting directly from EasyHideFolders
- turn on/off hiding engine globally
- easy-to-use hiding features management
- specify "wild-card" mask to hide a group of files/folders that match the mask
- any number of files, masks and folders can be hidden at the same time
- no one can access hidden files unless they are unhidden by your application
- invisibility of hidden files and folders over the network
- highest level of information security for your software
- fully compatible with Windows 2000, XP and 2003
- NTFS, FAT32, FAT file systems are supported
- all hidden items will stay invisible in Safe Mode too, extending file security";
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 = '';
}
}