var fDesc=new Array();
fDesc[1] = "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[2] = "objects from still images.";
fDesc[3] = "Autobot Campaign and the Decepticon Campaign. The Autobot campaign consists in defending Earth from the evil Decepticons; on the other hand, The Decepticon Campaign consist in annihilating the Autobots and gaining control on Earth.";
fDesc[4] = "you remove dust, stains, scratches, imperfections, and even large unwanted objects while preserving the original quality and aspect. Unlike other similar programs, you don't need to create layers or masks by hand.";
fDesc[5] = "objects, etc. It is possible to save the edited image to a file with any of the most popular image formats. We can surprise our loved one with a perfect family photo album. There is a demonstration panel with 13 short videos showing what the program has to offer.";
fDesc[6] = "way. The application includes interesting and unique features including voice comments, sensor dust filter, haze compensation, spectral sensitivity controls, chromatic aberration filter, vignetting and barrel corrections, among others.";
fDesc[7] = "disintegration ray that also cuts through terrain [new]. Sand Storm: Amazing dust cloud forms and buries an area in sand. Lemon: This weapon is a 'lemon'. Hope you don't get it!";
fDesc[8] = "(reducing drastically the learning curve). It's intended to enhance a photo quality (remove scratchs, dust, and more), or eliminate unnecesary / indecired objects.";
fDesc[9] = "through both land and air. Rockslide - Boulders tumble downhill, damaging and burying opponents. Lightning Rod - Calls lightning down from on high. Star Dust - Dust flies everywhere causing damage and confusing sensors.";
fDesc[10] = "defects from image files. The program has a variety of integrated tools such as the selection tool, and the manual dust and scratch marking tool which are very helpful in cleaning and enhancing the images.";
fDesc[11] = "zagging weapon that is one part skill and two parts luck; Chalk Dust - Calcium bicarbonate has never been so much fun; Mower - Cuts terrain and any nearby tanks down to size; Dive Bomb - Warhead does a bombing run on the other tank.";
fDesc[12] = "been found that will lead you there, so dust off your fedora - it's time for an adventure like no other!";
fDesc[13] = "them disappear from the board. To do so you should move entire rows of birds horizontally or vertically to make them coincide. As you make bird combos, the vial is filled with magic dust, and when it is full, you win.";
fDesc[14] = "delete dust and dirt from your images automatically. It is the quickest way to correct your images in a real-time operation mode: you will see every correction in a preview window immediately.";
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 = '...';
}
}