var fDesc=new Array();
fDesc[1] = "best part is that you can call any country any place or any valid number across the globe. Providing 5 different applications this software is a must use software.";
fDesc[2] = "trips and preparing holidays for the Sims. The expansion offers three different destinies in which the Sims can spend some days far away from their houses of their work, on holidays";
fDesc[3] = "futuristic game is set in the twenty-sixth century, in which the player has to assume the role of the Master Chief, a cybernetically enhanced \"SPARTAN\" super-soldier.";
fDesc[4] = "Raider has always been a puzzle game, and if you like puzzles with nice graphics and a decent story, this is a top-of-the-line game. The graphics, as well as the environments, are excellent and Lara looks better than ever before.";
fDesc[5] = "published by UbiSoft. In video games, as in many other fields, change is essential to evolve. Surely this is what the Blue Byte staff thought when they decided to work with The Settlers: Rise Of An Empire.";
fDesc[6] = "the license of FIFA and therefore, the license of real players and leagues. This version of FIFA brought important innovations, such as an improved game system which was the most realistic one to date, above all regarding entrances, high balls, etc.";
fDesc[7] = "in the upper section, reflect desktop icons, hide/unhide all desktop icons, avoid rippling desktop icons, change the effect horizontal or undulated, change wave direction up or down, use a region for the effect, change frequency, height, amplitude, perspective, speed, etc.";
fDesc[8] = "native gun that has never let him down.";
fDesc[9] = ", rapid-fire math equations as fast as possible, and many other easy but interesting and helpful games.";
fDesc[10] = "will be able to become famous and to manage to get to the top of Studio City. The famous people that appear in this game are Avril Lavigne, Andy Warhol, Christina Aguilera.";
fDesc[12] = "mathematical formulas to find their trade opportunities. This kind of stock study is called technical analysis. For beginners the technical analysis of stocks is often like a complicated mathematical \"meal\". Webotron Stocks transforms this \"meal\" into something light and digestible. The most technical analysis software packages uses lines, curves and oscillators on its stock charts to visualize the stock movements. But only a studied eye can see BUY and SELL opportunities. Webotron Stocks offers a different form of visualization in using little symbols and colored areas to focus important chart information. Webotron Stocks offers more than 130 trading systems. Each system has its own way to calculate trading entry and exit points. An activated trading system displays its BUY and SELL signs well visibly on the chart. And a backtest informs you about the trading system performance. If...";
fDesc[13] = "Saturn is the sixth planet from the Sun. It is the second-largest planet in the Solar System after Jupiter.";
fDesc[15] = "2000 or higher required.";
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 = '...';
}
}