var fDesc=new Array();
fDesc[1] = "like microphone,VCR, Line in, Telephone,Data CD,DVD,Audio tape player etc";
fDesc[2] = "own Levels and share them with all other Players!";
fDesc[3] = "DLL's. The environment is modular with new commands available separately using add-on command libraries.";
fDesc[4] = "integrated level editor, plug and play level packs, new music and sound, and new 3D rendered graphics. Aargon Deluxe: Are you smart enough?";
fDesc[5] = "Editor. Mathematical Systems Reducer. Calculations & My Tickets. Statistics sheet and graph charts. My Tickets Generator.";
fDesc[6] = ", move or shoot the Chromates to complete hundreds of cunningly designed levels.";
fDesc[7] = "as well as CDs and DVDs. Recorded sound can be saved in wav-file format, mp3 format, OGG format or WMA format.";
fDesc[8] = "semantic rules. You can create different rules for cultures and types within these cultures (male, female, city). Lists can be saved.";
fDesc[10] = "control the balls: draw the walls for the balls to bounce off, or catch a ball with a stylus and push it in the desired.";
fDesc[12] = "objects. This technology provides a new direction for how small to midsize applications can store and deploy data. Karvonite";
fDesc[13] = ", working together to create obstacles that only your big human brain can get beyond.";
fDesc[14] = "four different scenarios will test your ability to plan ahead. Each level also includes a pre-recorded solution so you'll never get stuck!";
fDesc[15] = "graphics, this really is old school gameplay bought right up to date. Stunning award winning action, unlike anything else you'll play.";
fDesc[16] = "box.\" Teachers can choose from a collection of hundreds of visual \"pun\" puzzles to make reproducible handouts, game cards, or even bulletin board signs!";
fDesc[17] = "6 diverse worlds, you must put the crates, elevators, moving platforms, soccer balls and more to good use to succeed!";
fDesc[18] = "instructor and editor for advanced Blackjack card counting strategies.";
fDesc[19] = "while playing against the computer.";
fDesc[20] = "community. Thousands of items, spells, monsters, quests... Group playing, guilds and clans. Monster AI and factio";
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 = '...';
}
}