var fDesc=new Array();
fDesc[1] = "folders to existing images, and also compress, add encryption, mount images etc. Among the features of the new version we get: compatibility with Windows Vista, support for multiple languages and command-line parameters support.";
fDesc[2] = "viruses, worms, Trojans and others. Keep in mind that there is not a 100% viruses program protection, you have to make your own precautions, like making Backups from your personal information. For security reasons save your information.";
fDesc[3] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[4] = "plug-in from their video project to easily add professional-grade custom length music scores to all of their digital video projects. This latest edition offers the most effective integration and direct access to a royality-free library of thousands of music scores.";
fDesc[5] = "software acts as the control panel for all our multimedia files, including video, audio, images, etc. Once opened we have direct access with a single clic to all the options and utilities of the full Nero 8.1 package.";
fDesc[6] = "WinOptimizer can clean your internet and PC history and clean all the junk files. You can clean your windows registry to get rid of unused registry entries and save your system from registry corruption and errors or you may like to make your private data password protected.";
fDesc[7] = "quick and straight access to the new Crunchgames center of Oberon Media. It includes all games organized into categories, with quick links to the most popular ones.";
fDesc[8] = "generated 3D world environments created using Skyline's SkylineGlobe products. With Terra Explorer installed, you can access photo-realistic, aerial image based terrains over the Internet, an intranet, or a DVD/CD-ROM.";
fDesc[9] = "direct access to change many settings and configure the behavior you want for your operating system ordered in categories. This software is easy-to-use and you can access to it for free.";
fDesc[10] = "folders promptly and easily. Direct Folders ensures fast and direct access to your preferred folders and recent documents. Jump out to any profoundly nested folder with a single click.";
fDesc[11] = "basic structure of the software is a search engine that will let you find the registry entries you want to modify and configure.";
fDesc[12] = "disks for errors. Disc Checker will even tell you what files are located on sectors with errors, so you can delete or maybe save them. Furthermore, the application has the ability to create disc images in an array of formats.";
fDesc[13] = "drives, network drives, and even RAM disk drives, and will build a direct access for them in the desktop. In the case of removable media (such as USB drives and CD/DVD drives), it will only add the drive to your desktop if it is present.";
fDesc[14] = "background, you can make it alive, by adding movement to the water in the image. By using Ripples you will build a screensaver that can be later displayed by Windows.";
fDesc[15] = "recognizes those commands when it is set to be listening for them; it then looks for actions associated to those commands and carries them out. The program can be used, for instance, to launch applications or paste frequently used passages of text.";
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 = '...';
}
}