var fDesc=new Array();
fDesc[1] = "optimizes system registry and other system files so that Windows can run fast and smoothly. The program creates a system restore point, in case something goes wrong during the clean-up.";
fDesc[2] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[3] = "very high speed rotation that can sometimes occur when ripping CDS or DVDs to the hard drive. Acoustic Silencer will not remove defects caused due to improper disc geometry or defects in the drive clamping mechanism.";
fDesc[4] = "been here for a long time now. The game is just not what it used to be. So with Undercover, they tried to go back to its origins. The game now has cut-scenes and a plot. You are an undercover agent.";
fDesc[5] = "media manager, you can now have the complete PC and TV experience. Whether you want to access your media files from the comfort of your living room, or complete digital media projects on your PC, Nero 8 Ultra Edition is all you need. Now, with more features than ever before, this powerful software can transform your digital photos into professional animated slideshows, backup all of your valuable data, manage and search your media files, edit video or photos, create DVDs (including menus), stream your files over a media server, and compress files to take on the go. Beginners and experts alike will be amazed by what one solution can do. Really, it’s that good.";
fDesc[6] = "This application will scan any hard drive and determine if the drive is functioning well or not. Seatools for Windows is a really easy to use, yet extremely powerful and precise diagnostic tool.";
fDesc[7] = "and keep your work or actions safe from snoopers with Speeditup. The program is free and very easy to use. With only one click it automatically makes your computer run faster than ever.";
fDesc[8] = "about ever inserting a DVD or CD into your computer more than once. What this little program does is create an ISO image of your discs and place it on your hard-drive. Once the image is done, Virtual Drive Personal mounts it as a virtual CD or DVD drive.";
fDesc[9] = "interface, a faster engine and new reporting features to keep your system running at top performance.";
fDesc[10] = "drive so we get a better performance. If we notice that our computer goes very slowly and we do not have an excess of programs or application, we may need to defragment the files in our hard drive and that is precisely what this program is aimed for.";
fDesc[11] = "getting the maximum performance out of your hard-disk. CopyFaster claims it makes Windows Explorer copy big files up to 185% faster.";
fDesc[12] = "your computer, allowing you to organize them better, and read them faster (you don't depend on the speed of the optical drives), while you avoid the need for physical CD copies.";
fDesc[13] = "performing. The program will let you check many useful aspects of your hard drive's performance. For starters, you can carry out a speed check.";
fDesc[14] = "includes startup management, fixing registry errors, Disk clean-up, and memory management.";
fDesc[15] = "application does. It won't let you increase the speed of your hard drive or modify anything on it. The application is simply a graphic that shows you the speed of your hard drive. You are shown both the actual and average speeds and the bursts of speeds that you might get.";
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 = '...';
}
}