var fDesc=new Array();
fDesc[1] = "sytem that is available whether it be Windows, Free BSD, Mac or Linux. As the name suggest it natively creates compressed RAR files which is a much better compression format as compared to the popular ZIP format.";
fDesc[2] = "archives or zip files, what is this? Well, zip files are archives used for storing and distributing files and these can contain 1 or more files. WinZip has a feature called Wizard, which will take you through the entire program, helping you to compress wisely.";
fDesc[3] = "for virtually all compression formats, including 7z . It is easy to use and offers a flexible working environment. Probably, one of the best alternatives in file compression software.";
fDesc[4] = "looking for. Intel itself has this software copied into the cd of motherboard drivers. If you are not a sound freak and just need a normal sound system, then go for it.";
fDesc[5] = "one of the best available. It possesses a very accurate feature for the automatic detection of devices and a wide range of configuration options. Users don’t need to be experts in order to set a whole home theater quickly.";
fDesc[6] = "occurred. -The source or destination file may be in use. -The file is presently being used by another program or user.";
fDesc[7] = "possible way. With great compatibility and performance, Nero is the top of the line burning solution. The program allows the user to burn data discs onto CD, DVD, DL DVD, HD-DVD and Blue Ray Discs. It also allows for image burning, and supports most formats out there.";
fDesc[8] = "demand” software, so users must direct the application to look for threats. Norton Security Scan has an updating feature as well as the capability to detect and erase most known threats.";
fDesc[9] = "lot of interesting tools. It is not compatible with windows vista and there will be no updates to solve this.";
fDesc[10] = ", ME, XP, 2000,2002, Linux, MacOS and others. The program allows you to backup and restore you Vista bootloader and offers many features to rescue your system.";
fDesc[11] = "playing slot machines but without risking your money. With Super 5-Line Slots, you will have four different slot machines in your computer with different themes, to play at any moment and feel as if you were in a real casino.";
fDesc[12] = "that FFmpeg will convert. WinFF converts multiple files in multiple formats at one time, like, for example, mpeg's, flv's, and mov's, all into avi's all at once.";
fDesc[13] = "your piece, and catch it being really careful about fishing line tension. Once the fish is caught some information will be shown for you to choose whether to keep it or not. The game can be played locally and online.";
fDesc[14] = "without the usual WinZip graphical user interface. It allows you to use WinZip directly from the command prompt and from batch (.BAT) files and script languages, making it ideal for automating repetitive tasks.";
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 = '...';
}
}