var fDesc=new Array();
fDesc[1] = "matchmaking and text and voice chats. Features game news and downloadable demos. When you install GameSpy Arcade 2.05, the program seeks for supported installed games in your computer, in order to allow you to play them online. If it finds nothing, it will later help you to find some.";
fDesc[2] = "pursue employment in five new careers that include dance, entertainment, intelligence, oceanography and architecture. There are ten hobbies included in the expansion pack and several new elements.";
fDesc[3] = "code editing, HTML 4.0 support. Includes fonts, GIFs, scripts, etc. Award winning. FREE. Registration required.";
fDesc[5] = "features in this program that are useful and which make it a noble program. The Exif viewer can be used with Internet Explorer, Windows and Firefox, so you will have many displaying options.";
fDesc[6] = "you make up stunning websites for your business, home or school in just few minutes. It´s not necessary to have any complicated HTML or other programming.";
fDesc[7] = "lot of time and money building model railroads in their backyards, for example. With this game, you can do it all from your PC without spending an additional dime.";
fDesc[8] = "create music. Kids enjoy recording their own vocals; and be creative in their own way.";
fDesc[9] = "choice. Various sounds can be created with just one sample. Composed song can be export as a WAV file.";
fDesc[10] = "different species. That information includes colorful pictures to get to know plants and flowers that might not be able to growth in your region of residence. It comes in three different versions: Free Edition, Standard Edition ($27.03), and Professional Edition ($94.95).";
fDesc[11] = "it’s serious sport. One of the most effective ways for improving your playing level is analyzing games. Chess Vision Trainer is application that was developed for improving your playing skills.";
fDesc[12] = "and diverting collection of household information.";
fDesc[14] = "many common variations of the game in 'solitaire' format, with the computer filling in for the other players. Features include strong computer play, a smooth and intuitive user interface,many options for scoring, rules, card display, colors, and other user options, ability to save and restart games, automatic play, and much more. Includes a full tutorial help file to teach you to play. A great way to learn a new hobby or to brush up on your expert Pinochle play.";
fDesc[15] = "with 3-D transformations, additional options and implemented geoids. Coordinates may be entered via keybo...";
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 = '...';
}
}