var fDesc=new Array();
fDesc[1] = "Heroes of Warcraft III, three missions showing the Orcs' battles and allows playing through Battle.net™. The missions included in this demo are totally new and do not appear in the full version of the game.";
fDesc[2] = "I certainly believe there is no beating this year's FIFA. The most apparent change this year is the pace of the game. Everything has been tweaked so that the game plays considerably faster. The first time I noticed this is when the goalie gets the ball.";
fDesc[3] = "ancient manuscript proclaims: “Align the relics you can see, across or down in groups of three. Turn all squares to solid gold, the path to riches will soon unfold”, and that’s pretty much what you have to do in the game.";
fDesc[4] = "variety of keyboard layouts. The program supports novice and expert users who wish to improve on their typing skills. It is appealing to adults and children alike by applying feeback techniques to keep the user interested in taking the next lesson.";
fDesc[5] = "reflects the hack'n'slash spirit of Dungeon Siege, with some modifications. As it happened in the first part, every character improves his skill, as we make use of it, and becomes a real specialist in his field.";
fDesc[6] = "looking to improve this essential skill. Kiran’s Typing Tutor is the right program for those who want to learn to type quickly and in an efficient way, as it includes a number of lessons, tests and games, and all for free.";
fDesc[7] = "the click of a button, from NavBars with menus to animated banner ads.";
fDesc[8] = "Beat the time pulling out all the pair of tiles. Remember you can only put out identical tiles by pairs. Enjoy and excercise your mind.";
fDesc[9] = "these games are brainy games. Brain Workout presently has verbal, numerical, spatial, memory and logic types of games. Under Verbal category you will find games of Anagrams, Spelling Test, Split Words, Word Ladders, word Search and Word Wise to enhance your English vocabulary.";
fDesc[10] = "randomly created levels, items and events. The player creates a heroic character, completes quests and battles through innumerable hordes of demons to advance through experience levels and branching skill paths";
fDesc[11] = "original recipes. To satisfy your customers' tastes, it's important to purchase the best recipes and upgrade your oven and other equipment.";
fDesc[12] = "Skill Magic Enhancer Lite plug-in can automatically detect and install itself on following photo editing applications: Adobe Photoshop 7, CS, CS2, Adobe Photoshop Elements 2, 3, 4, 5, Coral Jasc Paint Shop Pro 7, 8, 9, Corel Paint Shop Pro etc.";
fDesc[13] = "Tertris and even more fun! All the games of Buble series combined into one! Now you can install these games - Bubble Shooter, Bubble Thriller and Bubble FlyTrix in one go. Now you can choose: download, try and register these games one by one, or in a single pack. Online contest for best players is set up. Registered players of other games in this series get a huge discount. The Pack is also available for Palm OS and Pocket PC. Try for yourself, and you'll never forget that tickling feeling when a flock of bubbles flies in and you never know if they are going to end the game. The rules are simple, using the mouse you burst bubble and all the bubbles of the same color next to it blow up too, and others slip upward and fill the gaps. The more bubbles burst the more points you get. This is the main goal, actually - to get as many points as you can. You then could take part in the online...";
fDesc[14] = "works out two of these skills, for double the mental muscle building. There are 15 different Brain Builder games so you won’t get bored, that's for sure. Try this game for 60 minutes before you buy the licensed version.";
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 = '...';
}
}