var fDesc=new Array();
fDesc[1] = ", new panels for Masks and Adjustments, on-the image that we can apply some adjustments to the style of Photoshop Lightroom, a 3D engine, and then only for begin.";
fDesc[2] = "from Electronic Arts. It shows the status of components available. Much like Steam, many games require the manager to be online before the game functions properly.";
fDesc[3] = "beginner, it will be hard to understand the working of the program. The program uses a nice, black interface. On the left had, we see a list with thousands of audio effects, like clapping, piano, kick, etc. The features of the program make it the best of its kind.";
fDesc[4] = "expansion to Crysis. This title is a standalone game and does not need the previous game to be installed to run. Apparently, this new title is not a typical expansion, it brings a lot of changes from its predecessor and it shows the story on the other side of the Island.";
fDesc[5] = "The Sims 2. The game adds new content and features for the Sims. It also focuses on apartment life, allowing you to live in an apartment, and even the chance of having roommates. The expansion is perfect for The Sims fans.";
fDesc[6] = "is free for use, but offers a paid subscription to access more features, for U$S 4.99 a month. The first thing the program does, when installed, is look for updates through your Internet connection. It will then always update to the most recent version.";
fDesc[7] = "fourth episode in the SimCity series and originally was released on 2003. It has a single expansion pack known as Rush Hour which adds additional features to the game. But the Deluxe Edition contains the original game and Rush Hour combined as a single product.";
fDesc[8] = "installed in English or German. When you install TV-Browser 2.6.3, the first thing you have to do is to go through the Setup Assistant, in order to configure your system properly. It will check your Internet Connection and bring the list of available channels.";
fDesc[9] = "interaction between software running in a microcontroller and any analog or digital electronic device connected to it.";
fDesc[10] = "Wars. It was Developed by Electronic Arts.This expansion is able to fill part of the gaps left in C&C 3 using, as usual, the film part of the game.";
fDesc[11] = "converted into an electronic file). eBooks are a safe way to share, transport or even sell data that is copyrighted or is in need of a DRM (Digital Rights Management) encryption code. Mobipocket is a good program for anyone wishing to save personal writings in a safe environment.";
fDesc[12] = "developed for iPhone and iPod Touch, this tool allows you to read most type of documents in your computer, including ePub, TXT, DOC, RTF, HTML, LIT, and LRF. Its conversion capabilities will then allow you to upload them to your iPhone, iPod Touch, or Kindle.";
fDesc[13] = "virtually convert your computer into a keyboard allowing you to play musical notes, chords and drums. The interface can be greatly improved, just a tip for future versions. Very hard to play piano from the computer keyboard and it’s very natural since they weren’t designed to do that.";
fDesc[14] = "Freebie Notes will become in a useful tool for you. Freebie Notes lets you to place post-it notes on your Windows desktop as reminders of your important events, so next time you won't have any excuse for not going to the dentist or loosing that important job appointment.";
fDesc[15] = "variety of new interesting functions has been added. Program inteface has also been improved a lot, but you can also improve your dictionary yourself: new dictionaries can be added by simply coppying a dictionary file to the memory card.";
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 = '...';
}
}