var fDesc=new Array();
fDesc[2] = "surface, all files and partitions are eliminated, and it defines or re-creates the tracks and sectors on the disk. Then, it is possible to fix or repair a damaged disk.";
fDesc[3] = ", or filesystem. You can do things that other programs/methods couldn't. If you cannot boot your computer to Windows, you can still create a bootable regenerating diskette or a bootable regenerating CD.";
fDesc[4] = "with the ease and flexibility of a word processor.";
fDesc[5] = "your character has. This includes the glaive, a triple edged metal boomerang that can shred your opponents to pieces. The game is fun and entertaining, recommendable for action gamers.";
fDesc[6] = "Physical Memory or Hard disk as Hexadecimal values, which is commonly used instead of the bit by bit approach. It is capable of displaying the contents of the partitions in the hard drive and lets us choose any data left over (like in forensic purposes).";
fDesc[7] = "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[8] = "stability and controller test. Is the hard disk drive monitoring and failure prediction and repairing software for repair and testing. It uses S.M.A.R.T. technology to monitor the health status of hard disk drives, prevents data loss and predicts possible drive fail. This application include HDDBadSectorRepair.";
fDesc[9] = "worms, file infecting viruses, malicious VB and Java scripts, trojans, backdoors, spyware, adware, boot sector, partition table, file and macro viruses.";
fDesc[10] = "and photos from your USB supported removable media. This incredible application retrieves picture files from digital storage media even after the loss of root directory, MBR (Master Boot Record or Partition Table sector), DBR (DOS Boot Record or Boot sector), MFT or FAT.";
fDesc[11] = "type of software then any other floppy repairing tool. Unlike other softwares it does not mark the bad areas of floppy as bad sector. Even it does not hide any bad sector in the file system. As its name suggest, it is a floppy bad sector repair tool.";
fDesc[12] = "the computer effectively and perform many complex tasks. With the help of this application, the user can navigate by accessing the partition table directly, or through FAT or root directory, boot record or even jumping to a certain sector.";
fDesc[13] = "from track number. Useful for testing your hard disks. Display partitions space distribution on disk.";
fDesc[14] = "regardless of your operating system, file systems and partition scheme. In fact, the sector-by-sector method assures that your copy will be 100% identical to the original.";
fDesc[15] = "groups of stocks. Monitors stock quotes, percentage change, volume and provides easy access to news, charts and reports.";
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 = '...';
}
}