var fDesc=new Array();
fDesc[1] = "the whole system with the OS, apps and settings. In case of a crash you can restore it all in no time!";
fDesc[2] = "disk. Supporting various operating systems it allows you to install multiple operating systems on a single PC according to your needs and multiple operating systems on a single partition.";
fDesc[4] = "deploy a new hard disk on your PC or laptop. This incredible application automatically migrates all your data, programs, operating systems, settings, and everything else in a few minutes.";
fDesc[6] = "Director Server, users can recover accidentally lost/deleted partitions. It also allows hard disk editing at sector levels and enables users to extract information that was removed/lost by accident or virus attacks, or due to hardware/software failures.";
fDesc[10] = ", adware, keyloggers, hidden dialers, browser hijackers, and other malicious programs.";
fDesc[12] = "destruction standards and methods by authoritative security experts.";
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 = '...';
}
}