var fDesc=new Array();
fDesc[1] = "technologies like HTML, Ajax or Flash. Developers can take advantage of their knowledge in website creation to develop multimedia applications. In other words, from a web application they can create a general application with the contents and utilities of a web application.";
fDesc[2] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[3] = "way from machine guns, missiles, bombs, lasers and air support. After destroying some enemies you will earn extra bonus, powerups, weapon upgrades and ranking.";
fDesc[4] = "keep advancing from level to level. You will play at different stages, each stage is a different country. The game has got a nice storyline. You will be able to read the story from a book that will let you know what has happened and what will happen with the characters of the game.";
fDesc[5] = "lot of action, easy controls and, of course, a spectacular graphics display . Plot:You will be able to shoot to new enemies.";
fDesc[6] = "off for fun with Airport Mania! Land planes, unload, and return to the skies in 8 amusing airports. Avoid delays, keep your planes in good repair, and get to the gate on time to keep things running smoothly.";
fDesc[7] = "awesome firepower to its target. You alone are the hope of a nation. It won't be easy - varying landscapes, the darkness of night, and mighty defenses lie ahead.";
fDesc[8] = "game where you will be able to control a war helicopter while you will fight against a huge number of enemies. Plot:Unlike other games of simulation, this is a very simple one.";
fDesc[9] = "The base is attacked by the air forces of the enemy. The enemy troops are landed periodically.";
fDesc[10] = "II. It is an excellent choice because at that location and historical period reached its the highest expression of the classic aviation war combat.";
fDesc[11] = "good action and simplicity. You can control a battle that take place in air, ground and sea. The game has a lot of levels and you will take part in different missions.";
fDesc[12] = "Union attacks the NATO forces causing Cold War to turn into Hot War. This patch brings several enhancements including visual effects, better textures, improved physics, as well as fixing the problem with Instant Action starting without any gun ammo after the patch.";
fDesc[13] = "enemy´s balloons, you must type with your keyboard the letters that the balloons have on it. When you press a key, you´re required to complete the word that contains that letter before starting to type any other.";
fDesc[14] = ", situated on an island, is being attacked by the air forces of the enemy. The enemy´s attack is done by planes, helicopters and paratroopers. You must destroy the flying machines, and kill the troops that land.";
fDesc[15] = "run on your desktop computer without a web browser, they provide all the convenience of a desktop application. Companies like eBay and AOL are using Adobe AIR to create exciting new applications that allow you to use their services on your desktop.";
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 = '...';
}
}