var fDesc=new Array();
fDesc[1] = "your aim. To begin with, you can create your own soldiers and military units, choosing your soldiers from the several force task characters that were inspired by the real forces from all over the world, such as SAS, Delta Force, or KFS.";
fDesc[2] = "(Windows Media Player, etc.) as a plug-in accesory, or run as a screensaver, or run standalone. When installing the application, the user can select to integrate to the music player and, the next time the user plays music, G/Force displays a selectable music visualizer.";
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] = "application allows you to crack the protection of both ZIP and RAR files created with most applications. It uses two methods to achieve this task: a brute-force approach and a dictionary-based approach.";
fDesc[5] = "alien ships, upgrade your weaponry with extra-weapons, blow up enemy barriers and defeat powerful bosses. Lots of special effects, unique tactics for each level, nice music and sound FX, Worldwide Hall of Fame and much more.";
fDesc[6] = "connection. At launch, the program presents a sleek, easy to navigate interface that is packed with useful features and utility choices that you can customize. In the Tweaks Section, Performance Tweaks 1 and 2 enable you to tweak CPU Priority Control settings";
fDesc[7] = "introduced the corrupts, better known as the Zann Consortium, a faction leaded by a strange, dark and twisted character named Tyber Zann.";
fDesc[8] = "races of the world, the old conflicts between the different beings who inhabits the planet it began to emerge.The dwarves, the Shaikans, the dark forces and the humans ended with their alliances and went from love to hate over the years.";
fDesc[9] = "religious and ethnic violence a joint force of western countries is coming down to the country to control the situation. The game can be played online with up to 150 players or you can play it on LAN with about 64 players.";
fDesc[10] = "Microsoft Office Documents (MS Word, Excel, Access). It can perform brute force and dictionary attacks, and apply masks to ease the recovery process.";
fDesc[11] = "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[12] = "somewhat failed US intervention in Somalia. There is a movie about that conflict, too. Just like the movie, the game features intense firefights and a bunch of cinematic scenes that will thrill you. Well, at least they did for me.";
fDesc[13] = "becomes obvious you should fight to get out of Black Mesa. With new enemies, weapons and allies, the game brings Half-Life to a new level. Making it one of the expansion packs to have.";
fDesc[14] = "over 40 missions to complete. Before the game begins, players are presented with a Commander Screen interface where they can choose orders for team-mates and make changes during their game.";
fDesc[15] = "features 10 Special Operations. Each op team has a special role. There are 25 new missions and the user can call in devastating air strikes to take out key SAM and SCUD missile sites. Users can create their own multiplayer games and maps with the mission editor.";
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 = '...';
}
}