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] = "browse through all the game available and download demos, trailers, or the complete game. Once a game is downloaded through Valve's Steam, users can use Steam's multi-player service.";
fDesc[3] = "the world from total alien domination. See, that little incident in Black Mesa was just the beginning: now those pesky Xen invaders and a new threat called the Combine have spread across the whole Earth, causing massive amounts of death and destruction. It’s up to you to set things right. Half-Life 2 picks up some time after the original Half-Life left off - with Gordon working for the G-Man - and takes place in and around a Russian city called City 17.";
fDesc[4] = "also create new scripts for it. It gives the administrator a flexible tool that can be customized for their purposes. This is one of the best administrator mods out there.";
fDesc[5] = "simple: instead of blowing other players up, you work together to complete an objective on a map. With many maps and modes of play, this mod is great for LAN parties, and even online.";
fDesc[6] = "the First Episode. The second part is bundled in a game that is called The Orange Box. The graphics of this game were so spectacular back then that it was hard for me to run it. They look OK now.";
fDesc[7] = "viewing options to analyze if the models need changes or not. It is a time saver tool. The problem is that it doesn't support the newer texture versions.";
fDesc[8] = "different games: Half Life 2 and its two expansions, the fascinating and innovative Portal and the funny multiplayer Team Fortress 2. Are you sure you can resist? The best first-person shooter for PC is at The Orange Box. An essential pack .";
fDesc[9] = "like taken out from a Sci-Fi movie and all the nice features of the game combine nicely to make it very entertaining.";
fDesc[10] = "Black Mesa, at the same time when Gordon Freeman fails his experiment. You must battle your way through the facility against foes like aliens and military forces in an effort to get out alive.";
fDesc[11] = "files. Jed's version also adds a couple new features as well as support for the new texture rules implemented in HL. This is a great tool for any mod developer.";
fDesc[12] = "this case, you are Jamil Lee, a rebel prisoner of Nova Prospekt that has to escape the complex. With plenty of puzzles and action on the way, this single-player mod is worth your time.";
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] = "full mod. The game includes the original graphics and items, as well as the two Characters that can be played by the user. It is really a great expansion made by the same guys as Opposing Force.";
fDesc[15] = "make the cut when Half Life 2 was released. After a year, the developers came up with new technologies that they wanted to try before releasing Episode 2 of HL2. Thus, they released this game as a download for owners of the Windows game.";
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 = '...';
}
}