var fDesc=new Array();
fDesc[1] = "HTTP or SOCKS proxy server or a chain of proxy servers.";
fDesc[2] = "web hit features new enemies, new Adventure mode, and thousands of new mazes!";
fDesc[3] = "automated at zero memory loss, it frees up memory from the applications effectively. This program doesn’t require any user input in order to run and clean up the memory.";
fDesc[4] = "mechanical obstacles such as seesaws, suspension bridges, pendulums etc. You must overcome them to reach to the end of each level without dropping the ball.";
fDesc[5] = "gameplay. Great Mahjong demands from you a lot of concentration and a good memory. Most importantly, its full version can be downloaded from the developer´s at no cost since it is freeware.";
fDesc[6] = "age or less that enables single players to use gaming skills to overcome obstacles and choreograph dance moves. This game portrays Barbie as the character of Princess Genevieve.";
fDesc[7] = "added a new factor to the genre. In Braid, you control a little fellow who has to reunite himself with his beloved princess. To do so, he must overcome lots and lots of obstacles, but he has an ability that will help him with that.";
fDesc[8] = "than enjoy the comforts of modern life. And he gets to do plenty of both in his thrilling debut adventure! He also encounters a lot of what he'd rather do without: dangerous creatures, deadly obstacles and treacherous traps!You'll need every one of Gordon's nine lives as you help him run and jump his way to fortune and glory, explore exotic game worlds and overcome a cunning nemesis. You can also build your own dream island and play a variety of bonus stages as you take the role of Alex Gordon -- a cat with a hero's heart and adventure flowing through his veins!";
fDesc[9] = "city. There are spikes, fire, barriers and the other traps on the Bumpys way from level to level.";
fDesc[10] = "sectors, collecting riches, battling aliens and unlocking the way to freedom.";
fDesc[11] = "tools for creating a website graphical skills or technological/HTML knowledge and many extra features such as BLOG, Calendar, e-Commerce, Guestbook, impressive image slideshows, PodCast, Counters needed, EZ generator is an efficient solution to overcome all these problem.";
fDesc[12] = "single players to role play as the main character in the main, story-driven game that also includes two multiplayer challenge games for players.";
fDesc[13] = "and those who want to put to test their strategy skill and fast reflexes. The game interface is plenty of bright colors, its really eye-catching, and the music and sound effects suit the game perfectly. A fully functional version of the game can be tried out for 60 minutes.";
fDesc[14] = "role-playing, story-driven game that challenges players to become one of several characters and use their skills to overcome obstacles to attain a favorable result in the game.";
fDesc[15] = "of work that you could have sworn was on the top of the Leaning Tower of Pisa – otherwise known as the uneven stack of papers on your desk.";
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 = '...';
}
}