var fDesc=new Array();
fDesc[1] = ", and now it is easier to control the ball more accurately in the desired direction. With new menus resembling Windows Vista, more goal celebrations, more technical gestures and, of course, mandatory improved graphics, Pro Evolution Soccer offers another choice to Soccer fans";
fDesc[2] = "NBC, YouTube, MySpace, Google, Yahoo, to name but a few. . This powerful yet easy to use software offers a simpler and more comfortable way of watching thousands of videos without the need of using a browser and watching them in small windows within web pages.";
fDesc[3] = "Web and from FTP sites. The application uses the maximum available speed for the downloads and multi-channels technology. The 'Express' appellative surname tryies to show the download high speed meaning that the application offers a download time as low as possible.";
fDesc[4] = "of control over your inbox. It is a fabulous tool which deals with the unwanted email or spam we received every day. MailWasher Pro works directly with your email server, exactly like your email program does.";
fDesc[5] = "conference in Egypt visits a museum, there she learns about an eerie ancient Egyptian story about a princess named Annabel just like her. We will have to help Annabel and to make our best to be able to go through all the puzzles and traps.";
fDesc[6] = "similar to another one previously learned by the program, there will appear a list of words and you will only have to press the TAB button and the program will automatically complete the word.";
fDesc[7] = "opened for new episodes (9 up to now) by the American McGee Company based in Shanghai. We can download it for free from the Gametap platform. It is an action game for the PC after the famous Brothers Grimm's Tale.";
fDesc[8] = "count, compare numbers, add, subtract, multiply, and divide.";
fDesc[9] = "time the application is run, the ID and password are entered automatically.";
fDesc[11] = "should be brought to your attention.";
fDesc[12] = "instantly share cool stuff. Readmine learns what you like and what you don't and organises your reading list. Blog editor and more.";
fDesc[13] = "and other stocks of the same industry, and gives buy/hold/sell advice.";
fDesc[14] = "functions are managed automatically. You don't need to know anything about neural networks.";
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 = '...';
}
}