var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "physics algorithms which require amounts of simultaneous mathematical and logical calculations to make a simple game display. This is where NVIDIA PhysX Technology comes in.";
fDesc[3] = "screen and a small window appears with the relevant text translation, information or conversion that you need without interrupting your workflow.";
fDesc[4] = "Share your movies all over, on iPods, YouTube, or the new HD home theater systems, with full support for discs as AVCHD, Blu-ray and HD DVD.";
fDesc[6] = ", Windows often doesn't manage your multiple cores very well, so you're not actually getting the full multi-processor power you paid for.";
fDesc[7] = "Notepad and WordPad to make a great word processor. The main idea behind Jarte is usability. So, the developers created an application that is both light-weight and powerful.";
fDesc[8] = "detailed information of the driver versions that can be automatically downloaded, and also it gives you the ability to make backup copies of each of the drivers.";
fDesc[9] = "processing tools, and its Waves Mercury Bundle is a comprehensive collection that offers the incredible amount of over 90 processors and more than 250 plug-ins divided into different components.";
fDesc[10] = "open group of volunteers. AbiWord is a compact,powerful and feature-savvy word processor which is unbound by a single platform or proprietary file formats and is open source in nature.";
fDesc[11] = "package for the guitarists. AmpliTube Live has been recognized by many well-known guitarists and popular music editions as one of the best guitar effects. It is easy to control this program and its settings.";
fDesc[12] = "manage, rule, and memorize the priority of tasks running on your machine. Apart from displaying processes in much cleaner detail, the program makes it possible to create rules to indicate in which priority a program must be carried out, and even which processors it can use";
fDesc[13] = "PSP MixPack2 2.0 is a good deal. This package is designed to help you to enhance the sounds and give a high quality output. The package has plug-ins each concentrated on a single feature of improving in an audio file.";
fDesc[14] = "support for drag and drop files into the queue and upload and download all the options and profits of a professional client. Remember this version only works on X64 processors or those that have both instructions such as Intel Core and Core 2 Solo / Duo Processors";
fDesc[15] = "language experiences. It supports file uploads, email auto responses, form validation and displaying success page to the visitor upon completion of the web form.";
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 = '...';
}
}