var fDesc=new Array();
fDesc[1] = "ancient manuscript proclaims: “Align the relics you can see, across or down in groups of three. Turn all squares to solid gold, the path to riches will soon unfold”, and that’s pretty much what you have to do in the game.";
fDesc[2] = "line, focusing on an experience of intense and exciting race.GRID focuses 100% in the race. GRID will take players to amazing racing places on three continents.";
fDesc[3] = "versions. The main difference is that the game is done completely in 3D and allows a total control of the camera, and may change the angle of vision, getting closer and farther from the details of the adventure map as well as during the battles.";
fDesc[4] = "speed by 7-10 times.";
fDesc[5] = "blue flag), avoiding unseen mines, snakes and ghosts. It is a test of both memory and luck.";
fDesc[6] = "Bomb power-ups to help you clear the grid. Play your discs right and you'll create powerful cascades. This match-3 puzzle delight will have you Sprung!";
fDesc[7] = ", working with colors (designers, artists, developers, etc.), an easy-to-use and helpful color picker tool. We can create and customize our own palette.";
fDesc[8] = "is also extremely well presented and plays great. The first things that you will see are the great graphics. Every car is so detailed that you couldn't tell the difference from the real thing.";
fDesc[9] = "have to sort the similar colors together in order to get an atomic reaction. Atomica has two modes of game-play, a strategic turn-based mode and a fast-paced real time mode. This game will definitely take up some of your time if you play it.";
fDesc[10] = "superior playability. This demo allows you to race on two different tracks, with two different cars. The first car is a BMW 320Si and a Ford Mustang GTR muscle car.";
fDesc[11] = ", state-of-the-art time zone clock program with tons of features, which is intuitively and fun to use. You can set up any number of clocks in a line or grid arrangement (you decide how many columns and rows the grid has) The clock faces can have a different design in the same clock; choose from the many presets or make up your own! Choose analog and / or digital display; clocks can display country flags and can be resized from tiny to full screen Feature Summary Any number of clocks you need, in every possible line (horizontal / vertical) or grid arrangement Unlimited styles - use the clock with or without title bar and window frame Fully customizable list with cities from every country in the world (the capital of every country in the world is included - plus many others) Add, change or delete cities and select Favorites for quicker access Display the time on Analogue and/or Digital...";
fDesc[12] = "number grid with reasoning and patience (no math required). There is only one rule: Fill in the grid so that every row, column and 3x3 box contains all digits 1-9 only once.";
fDesc[13] = "possible direction, zoom in/out and lots more. The application creates grid of heights using the height data that has been obtained and writes it to a file, along with the other required information, loads the file and the map image or the image section and displays the 3D map.";
fDesc[14] = "embedded, so when the user changes the CSS, it’s propagated right away to the browser. The grid system makes CSS feel like “CSS on rails”, because it makes it impossible to have any CSS errors.";
fDesc[15] = "related needs, such as generating reports, with its additional built-in solutions.";
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 = '...';
}
}