var fDesc=new Array();
fDesc[1] = "that is set in a teamplay, you can choose to be a terrorist or a counter-terrorist. Warning: this great game is very addictive! You’ll download it in a few minutes and you’ll be playing it in less!";
fDesc[2] = "graphix and physics delivering a new experience for the long time Counterstrike fans. Began as an experiment, now is an experimented success. People from all around the world play it online via STEAM.";
fDesc[3] = "horror masterpiece game can be also classified as a co-operative, survival horror action game, it is based on the same Source graphics engine of Counter-Strike and it is to be run on Windows operative system based PCs.";
fDesc[4] = "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[5] = "bowling you score points by rolling a bowling ball along a flat surface called the lane into objects called pins. The variant used by this game is the 10-pin bowling.";
fDesc[6] = "game.This is another amazing game developed by Media Contact LLC. Plot: You will be a war pilot and your duty will be to kill all your country enemies. Your superior will give some missions, every one is different from the others, you must reach your goal if you want to pass to the next level.";
fDesc[7] = "mission will be to destroy all the other war planes that come across in your way, In addition you will have some extra points for destroying ships, during the battle you must remember to move all the time, is the only way that they can´t destroy you.";
fDesc[8] = "tower that will display the actual time. The clocks on the tower show you he correct time and can be set to strike every 15, 30, 45, or 60 minutes, or you can turn the sound off completely.";
fDesc[9] = ", retouched maps , which adds two new models and a single player mode. Counter-Strike is a tactical shooter game that confronts terrorists versus counter-terrorists in round-based gameplay.";
fDesc[10] = "that come for you from the land, the sea or the air. You will be able to rotate your helicopter by using your mouse, and you will command its movements through the cursor movement keys. You will fire your cannons by pressing the left mouse button.";
fDesc[11] = "ability and you reflexes. Shoot your ball and rebound it to strike and destroy all the obstacles in your screen. Once you clear your board your task will be completed.";
fDesc[12] = "network. This can be done from a local or a remote position. We are allowed to monitor our network and share connections, monitor servers, hosts, and services, create a network diagram and export it to Windows Visio.";
fDesc[13] = "have been fixed and new options have been added. When we create a new map it will automatically increase the map size when needed. Also the limits for the maps size have been increased. It is possible to retrieve information from SNMP devices via SNMP protocol.";
fDesc[14] = "renewed release of Strike Fighters: Project 1 and it is set in a a fictional conflict which takes place in the Middle East, the involved nations are the Kingdom of Dhimar and the Empire of Paran, and it covers the period of time between the years 1950 and 1970.";
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 = '...';
}
}