var fDesc=new Array();
fDesc[1] = "unnecessary elements (foreign language audio or subtitles, extras, additional footage) from the target DVD or just by compressing the existing contents. After setting the desired parameters, you can record your new DVD, or backup it to hard disk.";
fDesc[2] = "does without its not-so-needed components. The install file is considerably smaller and the program starts faster and runs smoother.";
fDesc[3] = "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[4] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[5] = "Rise of Nations is characterized by the construction of cities which is a requirement for trade and the construction of some buildings.";
fDesc[6] = "the three games is to collect as much money as we can, so that the money meter reaches the highest position and we move on to the next level. Each game features three levels of difficulties: easy, normal, and hard.";
fDesc[7] = "game is to eliminate pieces from a pile by selecting two pieces with the same drawing. To be able to eliminate pieces they can´t have another piece over them. Game ends when all of the pieces are eliminated from the pile or when the time runs out.";
fDesc[8] = ", and collect tips. You must help the restaurant owners to collect the money needed to pay their rents to Mr. Big, who wants them to fail because he wants his big restaurant to be the only one in the city.";
fDesc[9] = "fun option to “virtually” be there. It's a city adventure game in which you’ll be going around this beautiful city. It basically consists on looking and picking items from different locations, following a list provided by the game.";
fDesc[10] = "things, you grow, and become able to eat bigger fishes, provided they are smaller than you. You can join your counterparts from all over the world through Internet and beat your best score.";
fDesc[11] = "process, you will also learn interesting historical facts and also collect great mementos from completed levels to see the postcards of the places you have visited.";
fDesc[12] = "offered by Windows. This game introduces great graphics rendered through OpenGL technology, and offers two different views of the table.";
fDesc[13] = "start a new business, a flower shop at a beautiful island. Your goal is to help Meg expand her business to other locations. To do so, you have to help Meg reach a daily cash goal before the day is over, while keeping demanding customers satisfied.";
fDesc[14] = "by Big Fish Games have a common interface from which we can manage all the games from Big Fish Games that we have currently installed in the computer.";
fDesc[15] = "harvest into a fortune! Serve your drinks to the thirsty inhabitants of Big Island in levels of fast-paced, sun-drenched fun. Then, use the earnings to purchase upgrades to make your smoothie stand the best!";
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 = '...';
}
}