var fDesc=new Array();
fDesc[1] = "keep your personal data. It doesn't require any configuration but just entering your password and repeating it twice. It's a must have for all users who share their computers with others. You can also change the password anytime or simply remove your folders with one click.";
fDesc[2] = ", but users still can figure out what folders are protected and plan out a strategy to crack the protection of the folder. MySecretFolder takes a rather different approach.";
fDesc[3] = "File Set), CISO, ISZ, DAA, and PFO (Private Folder) files through any application. To do so, the program mounts those contents to the file system as virtual folders.";
fDesc[6] = ", Infopath and OneNote. The program has a very modern and professional user interface and an easy-to-use wizard. It offers the ability to import/export all your applications' settings very easily as well.";
fDesc[8] = "Outlook Express contacts file (.WAB), vCard file(.VCF) and Microsoft Excel (.XLS) file format. The program can scan contact directly from current default user and has a very easy GUI.";
fDesc[10] = "to the virtual invisible private folder.";
fDesc[11] = "upgrade their space limit from 2 GB. to 20 GB. while preserving all your emails and folders' structure. The program can downgrade your UNICODE .PST files in case you want to open them with older versions of Microsoft Outlook.";
fDesc[13] = "The program supports scanning of private users of the default Outlook user. The interface is easy and intuitive.";
fDesc[14] = "thus prevent access by anyone else to your personal files and documents.";
fDesc[15] = "anyone else to your personal files.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}