var fDesc=new Array();
fDesc[1] = "demanding photographer. Both versions of the software use the same database engine to catalog your image library, but the PRO version adds extra options for selecting from big photo shoots and the ability to process raw image files non-destructively.";
fDesc[2] = "color represents a god that will grant you with special power bonus each time you do 3 consecutive matches of it´s color. The game comes with four different modes and 4 different difficulty levels.";
fDesc[3] = "you can take a screen shot of the total screen or only of selected areas. Besides, the resulting images can be easily edited on the main window program.";
fDesc[4] = "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[5] = "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[6] = "the less heavy of the site. In this case you will have to select the level at the beginning of the game. Your goal is to collect different weapons, and try to not loose the power saw.";
fDesc[7] = "match you want to play. The options are One Player (this is, against the computer), Two players, Multiplayer, League, Tournament, or Practice. The Disks and Blocks modes are locked in the demo version.";
fDesc[8] = "and castles. You will find a combination of puzzles that you must solve in order to move forward to the next level - those puzzles mostly involve matching marbles. Your weapon will be a magical bow, which shoots colored stones on each left click of your mouse.";
fDesc[9] = "of three or more bricks of the same color - they will disappear. There are three game modes, three skill levels and bonuses. Online and download.";
fDesc[11] = "(The Last StarFighter software) was created as an exact copy of the movie. Within the game, you will be recruited by the Star League to pilot a spacecraft and you will have to fight in an intergalactic war.";
fDesc[12] = "that special feeling at any time that you want. You will see a very cute Cupid with his bow and arrow. He starts flying around the screen and suddenly he stops, loads his bow and shoots.";
fDesc[13] = "Icons.";
fDesc[14] = "goal of capturing the flag avoiding shoots from the opposite team with paint balls. Before to play it’s necessary to create a profile and register it on the website. Nice GUI is easy and friendly to user. It runs in Windows and Linux platforms.";
fDesc[15] = "will allow you to feel love and remember that special person in your life all year long. It will show you typical Valentine characters like Cupid, a heart and roses. You will be able to watch as Cupid loads his bow with an arrow and shoots it to give love to somebody.";
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 = '...';
}
}