var fDesc=new Array();
fDesc[1] = "up a Windows operating system, like the unnecessary file cleaner, registry cleaning and backup, Internet Explorer settings manager, process management, etc.";
fDesc[2] = "techniques for various file systems. It can speed up the disk automatically, even when we are using it. It can efficiently manage CPU and other resources to carry out the task of defragmenting in a manner that doesn’t affect our activities.";
fDesc[3] = "Programs take a long time to open. Games stall while loading. Are you also under the impression that your PC's performance is getting worse?";
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 = '...';
}
}