var fDesc=new Array();
fDesc[1] = "civilization, or as the imperialistic British. Players also have the opportunity to try out the new random map Honshu, and the King of the Hill game type.";
fDesc[2] = "view. The game view is not really upper view, but a high view of the rear part of the spaceship. As in many other games of this type that we may know, in Astro Avenger 2.0 we must fire everything we find in front of us.";
fDesc[3] = "and fun as ever. Playing Scrabble is really fun and easy, apart from being educational and suitable for all family members. You will never get tired of playing Scrabble Blast!";
fDesc[4] = "stopping the frogs' invasion. Froggy Castle introduces two attractive characters, Hamster Pitt and Princess Patty, who are the sentinels of their castle. Big and nasty frogs are invading their kingdom, but they have already found a way of attacking them.";
fDesc[5] = "multiple functions and options, it came with 4 stereo tracks, 16 Midi tracks, plug-ins for the effects, video sync, aux buses and others. This tool provides the facility to create music files to share them with anybody.";
fDesc[6] = "keys. AST also includes new and unique features to help experienced typists gain greater speed.";
fDesc[7] = "advanced mode. It is considered to be the most award winning collection of data and analysis software. Data studio allows the users to watch the science unfold in front of them in real time with data collection, graphing, and analysis.";
fDesc[8] = "controlling the ship with your mouse. You can fire regular ammunitions (laser) and rockets. You start the game with four lives, full level of power, and full level of armor. Every time you got hit by the enemies, you lose some armor level. Try this game for 60 minutes.";
fDesc[10] = "as a hifi rack with Winamp, watch TV/DVD or give your business presentations the extra touch - controlled with your remote control and uICE!";
fDesc[11] = ", encrypted pad, password manager,Bookmarks manager,Auto fill login and password and a special \"trojan preventing\" mechanism.";
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 = '...';
}
}