var fDesc=new Array();
fDesc[1] = "twelfth delivery is the appearance of the user interface. In short, a very complete range of solutions that will be to the liking of the more novice users and those who want to further customize their productions.";
fDesc[2] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[3] = "errors that show up. The software can optimize the computer by first scanning it to find the problems and then fixing the invalid registry entries. The Advanced Registry Optimizer is also easy to use and has a user friendly interface.";
fDesc[4] = ", Drive Images, Zip/Jaz Drives, Compact Flash, Smart Media, Secure Digital, and USB Flash Cards.";
fDesc[5] = "cleaner can be that solution and the best part is: you don't have to extra pay for it. As you might guess from its name, this tool is free of charge";
fDesc[6] = "the application, you will see a small screen asking you how much memory you want to test. The ideal value here is the total of your memory. If you are troubleshooting your computer for RAM problems; that is.";
fDesc[7] = "excellent defrag tool, but it also has other additional features that will help you keep your hard disks in optimal conditions.";
fDesc[8] = "we are aware of it. In addition, HDDlife has a proper treatment for every diagnosis and can solve almost any problem. That way, not only monitors and inform us about our hard disks’ health but also take care of it and cure the disks whenever it’s necessary.";
fDesc[9] = "and power management functions. It works under Vista, supports USB hard disks and uses S.M.A.R.T. to give detailed reports on disks health.";
fDesc[10] = "if the partition table, or boot sector on hard disk is lost or damaged due to a virus attack, software failure, Fdisk or Partition Magic misapplication among other reasons.";
fDesc[11] = "disks, floppy disks, PCMCIA-attached digital camera cartridges, smartmedia, compactflashs and memory sticks that have been lost due to accidental deletion or format, system crash, virus damage, power failure and much more.";
fDesc[12] = "(.doc, .docx, .dot, dotx files) as well as documents in the Rich Text format (.rtf files) due to a virus, to a failure in the operating or file system or any software failure.";
fDesc[13] = "fatal failure or mishap in due course. Although sending data to the server for creating back-up may be unsafe, this application encrypts the data strongly and sends it to the center in a cent percent secure way.";
fDesc[14] = "it takes that you remember it. PC Backup gives solutions to those problems. PC Backup from Mingo Software is a very complete and easy-to-use suite for backup creation and restoration with a lot of “bonus” tools that make it a professional software.";
fDesc[15] = "when a hard-drive is no longer safe to use. This tool is also capable of monitoring HDD temperature and alerting you over the network.";
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 = '...';
}
}