var fDesc=new Array();
fDesc[1] = "to enter the new continent unexplored with their richness by exploiting some indigenous to conquer. This version has several bugs and lacks some features present in version 1.1, like some out-of-sync bugs and multiplayer scenarios.";
fDesc[2] = "on the Game. It has 3 complementary versions: Linux/Win client, Linux server and Windows server. It was designed exclusively to work with Half Life 1 engines.";
fDesc[3] = "of a few different soldiers fighting for different Allied factions during World War II. Each of the game's 10 missions is split into different stages. The game's graphics are particularly great, specially the smoke effects from smoke grenades and explosions, and sound is nothing less than superb.";
fDesc[4] = "becoming the best tactical shooter out there, and until a couple of years ago, it was the best. Now it is just a great tactical first person shooter. The game puts you on command of a tactical squad of elite police officers.";
fDesc[5] = "installment include the Aston Martin DB7, Ferrari 550 Maranello, and the Lamborghini Diablo SV. With the ability to download more exclusive vehicles from the Need for Speed website, there will always be something new to test drive. For multiplayer-enthusiast s, NFS3 supports up to two players with a Modem or Serial connection or up to eight players with a LAN connection. As if that wasn't enough, the already-stunning graphics have been improved, with an even higher level of attention to detail that includes blowing leaves, smoke from the burning rubber of tires, and amazing weather effects such as rain, lightning, snow, and fog. Finally, there's an all-new Hot Pursuit mode where you scorch the streets on either side of the law: Elude the fuzz as a speeding motorist or enforce justice from a police patrol vehicle. Surely, racing doesn't get any better than this.";
fDesc[6] = ", sparkles, motion graphics backgrounds, space effects, creatures, and abstract artistic effects, among hundreds more. The first time you run the program, and later periodically, it will check if there are updates available, using your Internet connection.";
fDesc[7] = "level, gathering gold and staying away from monsters. The player can dig holes to trap monsters. Collect all gold to win!";
fDesc[8] = "erupting, complete with lava falling down its sides and flowing to the bottom, as well as rocks flying out with the explosion. You will even feel the earthquakes provoked by the eruptions!";
fDesc[9] = ", light, etc. It's easy to create, use and customise the particle effects. When you are done with the creative part, then you can export the file as an image(JPEG/BMP/PNG), an AVI video, or a SW/FLV file.";
fDesc[11] = "Counter 1.2 offers to use computer for dropping smoking. It is a small program with a friendly interface that can really improve your motivation.";
fDesc[12] = "similar to the real ones, flying around your screen and slowly turning on and off a trail of smoke to write the letters of your message. Now when you wish a happy birthday or want to say \"I Love You\" to that special person, you will do it with style.";
fDesc[13] = "time. You will travel to the past to prehistoric times, when dinosaurs ruled over any other species in the world. You will see an active volcano expelling smoke to the sky, and lava flowing down to the ground.";
fDesc[14] = "the lifetime and the size of the smoke texture. This adds more realism to the game, even if it is a small detail. The difference is noticeable, so its recommended for all LFS Users.";
fDesc[15] = "working very hard to finish all the Christmas gifts on time. His house is modest but beautiful. There must be a lot of magical activity inside, since you will be able to see smoke coming out of the chimney.";
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 = '...';
}
}