var fDesc=new Array();
fDesc[1] = "funny stuff. Plot: The third delivery of this saga comes back with an old subject: the time travel. In this case is used by the soviets to eliminate a scientist, Einstein and his developments which will be vital for the Allies.";
fDesc[2] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[3] = ", MetaCafe and convert them to popular formats like AVI, MPEG1, MPEG2, WMV, FLV, MP4, 3GP, MP3 allowing you to play them on portable devices like iPod Video, iPhone, Zune, PSP, mobile phones, etc.";
fDesc[4] = "get mines, lasers, nuclear bombs, piranha, lightning, insulators, infectors, ball lightning, homing lasers and more!";
fDesc[5] = "Berlin Wall hadn't fallen? Well, we would be living in a quite different world. That is what the game is all about. The Berlin Wall didn't fall and the Soviet army kept on getting more and more powerful.";
fDesc[6] = "play them on portable devices like iPhone, iPod, PSP, Zune, iRiver Clix, AppleTV, QuickTime, and more. You can also extract audio from video files.";
fDesc[7] = "place after the world is destroyed by an all-out nuclear war. You play as a commander of \"The Project\" whose mission is to rebuild Earth.";
fDesc[8] = "moto with the cursor keys, riding the bike from left to right. You will have to race trying to get the bonuses that are scattered along the course, jumping obstacles and performing stunts, such as a 360 degree flip or a wheelie.";
fDesc[9] = "first time ever were nuclear bombs available for you to use in a video game. That was what sold the game back then. Fear, I would say. The game features one of the most advanced aircraft ever created, the F-22.";
fDesc[10] = "The player can select his side with different types of weapons and buildings to choose. The author released a patch for version 2.8.7.1.";
fDesc[11] = "on streaming sites like YouTube, MySpace, and Flurl avoiding the use of your web browser and allowing for a faster process with features like batch uploading.";
fDesc[12] = "scenic landscapes. Enjoy the real time smoke trails and fully customizable weapon economy with up to 16 players.";
fDesc[13] = "nuclear power plant, where your task is to destroy all the radioactive material from the plant with the aid of a powerful ball.";
fDesc[14] = "ship. Thousands of Free Online Games, Free Flash Games, Free Games and Free Addicting Games at Factorygames\"";
fDesc[15] = "the bricks are destroyed.";
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 = '...';
}
}