var fDesc=new Array();
fDesc[1] = "capabilities like calendar, task, contact management, note taking, journal, and Web browsing. It can be integrated with Microsoft Exchange Server and Microsoft Office SharePoint Server to provide extended functions to multiple users in organizations.";
fDesc[2] = "with the rapid growth of your network and expands with your network monitoring needs.";
fDesc[3] = "which you choose the layout you want to play and the breathtaking Endless mode in which you remove tiles from an ever-rising tower of game pieces. Mahjongg Artifacts is a striking new entry in the fiercely competitive Mahjongg category of casual games.";
fDesc[4] = "saga, in this case, you are going back to the ancient Persia. Like in the other games you will climb walls, jump, and do all kind of incredible movements.";
fDesc[5] = "The registered version includes five different games: easy, classic, modern, hard, and extreme. Each game has several levels. In the free demo, we can only access the easy game with seven levels. We can customize the options for a better performance.";
fDesc[6] = "Deluxe Galaga. Was one of Adrenaline Vaults top shareware games of 2004! The game requires DirectX 8.1 or later.";
fDesc[7] = "level avoiding to be caught by his enemies, the ghosts. The game can be installed in 17 different languages. Pacman 2005 has 60 levels and three game modes. The difficulty of the game will increase as you play.";
fDesc[8] = "1988. 20 years later, arrives in an update that appears to be a must. Bionic Commando was actually really a great game, and this is confirmed since the first game session in Rearmed.";
fDesc[9] = "level, gathering gold and staying away from monsters. The player can dig holes to trap monsters. Collect all gold to win!";
fDesc[10] = "treasures, bonuses and confront cyber-guards. Splendid graphics and miraculous music help you immerse into the unforgettable virtual world!";
fDesc[11] = "accelerated 3D graphics, pumping soundtrack, and amazingly unique level design. Bugatron is a quick download, at only 4 megs.";
fDesc[12] = "\"Streets of Rage\", an action and addictive game that, together with its characters, captured the attention of all those who had a Sega Mega Drive machine. Today, we can enjoy a remake of this classic game from the 80's and 90's, which besides, is totally free!";
fDesc[13] = "around the world. If you are a fan of this addictive program (like me), then I'm sure you will enjoy this remake: its name is Tetro Challenge.";
fDesc[14] = "visual effects, beautiful music and sound effects, many enemies and monsters, 6 episodes and 60 outstanding levels of fun! Real 3d arcade!";
fDesc[15] = "incredible and ingenious game. It was about a bank robber that wanted to break into the Spain Bank. But in the meantime, he will have to escape from a city where everybody is against him.";
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 = '...';
}
}