var fDesc=new Array();
fDesc[1] = "Iroquois or the Germans, improving the Home City, and enjoying the first two single-player missions of the continuing tale of the Black family.";
fDesc[2] = "hardware or software RAID's.The software supports NTFS, FAT32, FAT16, NTFS5, NTFS+EFS file systems and works under all Windows operating systems.";
fDesc[3] = "from the Recycle Bin, in a DOS window, from Windows Explorer with the SHIFT key held down.";
fDesc[4] = "data that becomes inaccessible because of system administration errors such as removing users and user profiles, misconfiguring data recovery authorities, transferring users between domains, or moving hard disks to a different PC.";
fDesc[5] = "hard disk into a data strongbox that can be accessed by its owner only.";
fDesc[7] = "for the selected file, folder, or drive. You can configure the context menu, change icons, configure NTFS parameters, set attributes and more.";
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 = '...';
}
}