var fDesc=new Array();
fDesc[1] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[2] = ", e-mail and web sites. 2- System Security by monitoring all activity in our PC, 3- Online Security against internet fraud and network attacks.";
fDesc[3] = "and geographical capabilities using built-in user-friendly features for easy operation and exploration. The program is educational for users of all ages and for families with school-age children.";
fDesc[4] = "coordinates, so you can watch the sky on the screen as if you were using a telescope in real life. You can make the illusion more realistic adding atmosphere effects and views including the ground.";
fDesc[5] = "alien ships, upgrade your weaponry with extra-weapons, blow up enemy barriers and defeat powerful bosses. Lots of special effects, unique tactics for each level, nice music and sound FX, Worldwide Hall of Fame and much more.";
fDesc[6] = "S.T.A.L.K.E.R. surprised everybody in the past with its irresistible ambience and a very wise idea to combine such concepts as Survival, FPS or even role. Now comes the turn of this prequel that will show whether it is really at the height of its admired predecessor.";
fDesc[7] = "pilots at any cost. The game shows you a top view of your plane and the coming enemies. You control your plane using the mouse. You can fire using the spacebar or your left mouse button.";
fDesc[8] = "this game, you take on the role of military aircraft pilot. You can choose a plane, a mission to accomplish.";
fDesc[9] = "programmes plus live channels * Catch up on the shows you've missed * No Sky TV subscription required * Free content for Sky TV customers";
fDesc[10] = "explore the sky visible in the distant past, the present, and the far-off future.";
fDesc[11] = "the three crystals that provide the energy to keep your island hovering in the air. You will need to recover the stolen crystals, or your island will fall to the ground. You will achieve this by playing this match-three game.";
fDesc[12] = "be seen from your location in the Earth, or any given location in the planet. Just by choosing your location in the map, you will give the program all the needed data to display the sky that can be seen from that place.";
fDesc[13] = ", choosing different missions and planes. You will have to destroy enemy buildings, fuel deposits, zeppelins and planes by using your cannon (that you will fire with the CTRL key) and dropping bombs (with the SPACE key).";
fDesc[14] = "kill time. Playing the part of a courageous Sky Hero, the game involves going deep into the confusing and intricate network of passages where you will be in charge of picking up crystals and gems as you move forward.";
fDesc[15] = "imprisoned in fragile bubbles by arranging them in lines of three.";
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 = '...';
}
}