var fDesc=new Array();
fDesc[1] = "does without its not-so-needed components. The install file is considerably smaller and the program starts faster and runs smoother.";
fDesc[2] = "period. The game starts with a team of US scientists who are sent to an island in the south of China to investigate a weird phenomenon but face a blockade by the North Korean government. Needless to say, that is one critical situation.";
fDesc[3] = "very good partition manager considering its capabilities. It has all the components / functions required for a partition manager. It gives a wizard like interface when the program starts. There is also an advanced version for experienced users.";
fDesc[4] = "long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[5] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[6] = "1000s of artists. You will also be able to listen to music on your PC, mobile player or as ring tones on your mobile phone. With Radiotracker, you will have in your hands the gift of unlimited music all day, free and legal.";
fDesc[7] = "audio/video files as soon as a download starts. With IDA download and save video from popular video sharing sites like YouTube. Some IDA features include: Scheduler, FTP Explorer, ZIP browse before downloading. IDA integrates into all popular browsers.";
fDesc[8] = "following the orders of a mysterious agency. The game includes more than 20 missions in all, which you'll play in a linear order, one after the other.The graphics of this game are great enough and particularly the sound has been improved so as to make it really enjoyable.";
fDesc[9] = "defraging the drives and consolidating the disk free space. The application defrags the units in different ways: Automatically and Manually (user turns on/off the process).";
fDesc[10] = "Screensaver delivers the excitement of a real-life fire experience direct to your computer desktop. Discover beautiful flames to relax by, with the crackling sound of a real fire and the melody of your favorite song. Our Free Fire Screensaver sets a relaxing and romantic mood any time of the year, especially during cold winter nights. Just rest your mouse for a while, sit back and relax. The desktop dims out and starts to glow ardent orange, creating a glorious effect with flames that seem alive. The flames are curling up and dancing on the desktop icons and open windows as if they were wooden logs in the fireplace. The screensaver offers crackling and popping sounds. This adds greatly to the realism of the fire scene. You can also listen to music when the screensaver is engaged. Select a music track from the music set that comes with the screensaver or choose your own file for...";
fDesc[11] = "Electronic Arts. It is the sequel to 2005's Mercenaries: Playground of Destruction. The game is set in Venezuela and presents three playable characters: Jennifer Mui, Mattias Nilsson and Chris Jacobs. All characters are going to go through the same storyline that centers around the player's choice.";
fDesc[12] = "colorful and it takes the player through out an active game telling a story. The games starts in the land of the five cards' kingdoms where an evil force had been awaken after one hundred years.";
fDesc[13] = "kind, above even games like Age of Empires. The Settlers: Heritage of Kings part of a completely different premise.";
fDesc[14] = "Ozzy starts the journey with an innocent game of catch, as Ozzy accidentally smacks into a slab of ice, cracking it and letting a mysterious creature go free. Intrigued, he follows, unknowingly setting off on the adventure of a lifetime, filled with excitement and wonder.";
fDesc[15] = "the desired gems that will help you to solve the riddle printed on the map you also found. Arrange in groups of at least three, those tokens with gems on it. All you need in order to play this game is your mouse.";
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 = '...';
}
}