var fDesc=new Array();
fDesc[1] = "browser, to read documents and emails offline. At the begining Gears only implemented Google Reader, but now Gmail is in progress and it is expected that in the near future it will be extended to other applications such as Google Docs or Google Calendar.";
fDesc[2] = "Sims. The sixth expansion pack for The Sims 2, which is called The Sims 2: Bon Voyage, presents a similar topic to develop. Vacation introduced a new neighborhood, called Vacation Island, where the Sims may take vacations with members of their own family or with other Sims";
fDesc[3] = "the Mozilla plug-in you can play with FireFox or SeaMonkey. The performance is better than with the IE plug-in and the size is smaller. Overall, the Quake Live game is fun and smooth to play. This is the future of gaming.";
fDesc[4] = "made its grand debut on the XBOX 360 when the console was just released. The game introduced certain features that were long missing from the previous games. The most important change from the previous game is the great graphics that this game has.";
fDesc[5] = "pinball table you can imagine. The process is very interesting, even when it can take some time. Future Pinball will provide everything you need on convenient toolbars on hand. It’s not only a pinball editor but also a simulator so you will be able to play on your tables.";
fDesc[6] = "in the future. If the video file is stored in your browser's cache, this utility can help you to extract the video file from the cache and save it for watching it in the future. It automatically scans the entire cache of Internet Explorer and Mozilla-based Web browsers (Including Firefox) and finds all video files that are currently stored in it. It allows you to easily copy the cached video files into another folder for playing/watching them in the future. If you have a movie player that is configured to play flv files, it also allows you to play the video directly from your browser's cache.";
fDesc[7] = "take quick snapshots of individual web pages and saves the content in the original file format, allowing you to open them with associated applications or online tools such as newsreaders, e-mail clients, etc.";
fDesc[8] = "three-dimensional graphics engine to evolve a wide variety of themes over time, producing visual effects that are absolutely stunning.";
fDesc[9] = "surely also know that this planet is the number twelve in the solar system. What you probably do not know is that according to ancient Sumerian people, our planet formed part of Niburu.";
fDesc[10] = "nowadays situation, terrorism and political plots seems to be in the developers vision, as well as by its impressive playability. Plot: The story of this game takes the action in the near future.";
fDesc[11] = "computer from future problems. It is actually a protection and security tool which works as a shield for your computer. It actually provides PC Rollback, File Recovery, System and Data Security and Drive Imaging solutions to solve all type of problems.";
fDesc[12] = "Plot: In 2008 the area which includes Iran, Afghanistan, India and China has become in a new republic, the Democratic Republic of North Djombystan (DRND) The leaders of this country gave permission to USA government to make a subterranean base on its territory.";
fDesc[13] = "of a time machine. You will travel to a maybe not so far away future. Who knows? You will visit a big and probably important city. But it will not be like New York or anything similar.";
fDesc[14] = "final journey. You will be transported to the future. The Place? Los Angeles, U.S.A. The year? 2029. Hey! That’s not THAT far from today!";
fDesc[15] = "introducing variables that include initial balance, periodic payments, interest of your investments, start and end dates so you can have an idea of the amount of money you can save with certain behavior.";
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 = '...';
}
}