var fDesc=new Array();
fDesc[1] = "picture quality even at high compression ratios. Xvid is similar to DivX, since it is an open source project, distributed under the terms of the GNU General Public License (GPL). That means that it´s free to use, and everyone can contribute to its development.";
fDesc[2] = "and Windows' notepad is unavoidable. TextPad has a bunch of features that make it a great text editor for many types of tasks. It has all the basic features of a text editor. You can add text and format it in many ways.";
fDesc[3] = "When clicking on a group of 3 or more same-colored bricks, the whole group disappears, and the hole is filled first by the elements falling from above. If a column is cleared, the elements move to the center of the field.";
fDesc[4] = "little color squares to eliminate them and stop them from reaching the middle of the screen, if they touch the figure located there, it will explode and you will lose. You can eliminate the figures when there are groups of three or more squares of the same color together.";
fDesc[5] = "same color, vertically or horizontally, to make them disappear from the board. In order to get to the next level you will have to make a certain number of matches";
fDesc[6] = "tool is a must-have for teachers and students of these languages, you have everything you need to a very quick start.";
fDesc[7] = "to be able to install Audiosurf. So, if you don´t, you will be directed to Valve´s Site to download it. After that, you must create an account. Then, you´ll be able to install the demo version.";
fDesc[8] = "color together, to win the game. To get to the next level you will have to remove all colored blocks, always making sure each one still has got a pair. The blocks cannot be moved upwards, only to the left or right (or down, if suddenly have nothing to move upon).";
fDesc[9] = "or more same-colored blocks to remove them from the board. Bonus points will be earned for forming flowers and other special combinations. Hexic Deluxe can be played in three different modes: Marathon, Timed and Survival.";
fDesc[10] = "distributed at GameTop.com. As you can imagine this game is intended for kids however it could also challenge any skilled adult. This amazing title recalls the classic \"Columns\", but in this case you have no jewellery of various shapes and colours, but hamsters of different colours.";
fDesc[11] = "At startup, we can select several options, such as full screen, video mode, music volume, sound volume, voices. In this game, we but click on the colored blocks as quickly as possible and make them disappear, before the laser ray of the green frog hits the blocks.";
fDesc[12] = "lines, Hexic rotates 3 of them. Match three or more of the same colour in a cluster to make them disappear. New blocks will fall from above and take their place.";
fDesc[13] = "must help her by stocking the shelves with the latest fashionable goods. You can enhance the look of your shop by picking wallpapers, exotic rugs, and other decorative enhancements.";
fDesc[14] = "least three letters long and the blocks can be joined horizontally, vertically and diagonally. Every time you make a word, the letter blocks used disappear making the blocks above, fall down.";
fDesc[15] = "way. You can easily create multiple blocks and arrange them into a logical structure for easy reference. All your important ideas, notes, story elements and research work can be organized in these small blocks, and the blocks can be arranged in columns.";
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 = '...';
}
}