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] = "devices. In order to do that we need to have a computer either with a USB plugin Bluetooth wireless adapter or a Broadcom enabled embedded.";
fDesc[4] = ", you´ll have to watch out for dangerous puzzle locks. The game has high resolution graphics. It can be played in four modes: Classic, Speed, Zen and Mind Bender, in Rainbow, Giant and Super Chuzzles. You´re awarded with trophies as you win.";
fDesc[5] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
fDesc[6] = "gain points. You will have to make a word from more than three or three letters. You can make a word by selecting letters horizontally, vertically or diagonally even - but the rule is not to leave a letter (you cannot skip a letter).";
fDesc[7] = "You control the character with the cursor keys (to move it to the right or left) and you jump with the spacebar. You must remember that the steps are covered with ice, so they are very slippery. Be careful when you jump, without falling.";
fDesc[8] = "for access points, locate their position on a radar analyze the power of each item located, displaying their IDs and connect, an automatic mode.";
fDesc[9] = "goal. You will have gears of different colors and sizes, each gear will give you a different amount of points. Some will indicate to you how many points you will get and some will not.";
fDesc[10] = "gaming website, where we can register freely. We get points for playing and of course more points for winning. The points are counted in rupees (or dollars). But we don't actually get the money. We can select different items as reward based on the amount we have made (like a game CD ).";
fDesc[11] = "get to bet how well you can do at the beginning of each round. A window appears asking you to choose one of the three options The thing is that if you miss your bet the game is over, so try no to shoot too high.";
fDesc[12] = "bowling you score points by rolling a bowling ball along a flat surface called the lane into objects called pins. The variant used by this game is the 10-pin bowling.";
fDesc[13] = "Ed. enables users to generate a coverage map by either manually plotting points, or using a GPS device.";
fDesc[14] = "recovery points. Useful for resetting a PC to a point when it was running correctly. All this and more with the easy-to-use Norton Save & Restore software.";
fDesc[15] = "junction points, then this utility shows them. Any operation required on junction points can be done like modifying or removing them. On a single computer putting one folder inside another is junction point. It helps in removing cluttering.";
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 = '...';
}
}