var fDesc=new Array();
fDesc[1] = ", sparkles, motion graphics backgrounds, space effects, creatures, and abstract artistic effects, among hundreds more. The first time you run the program, and later periodically, it will check if there are updates available, using your Internet connection.";
fDesc[2] = "both the original image and the edited one. It is also possible to apply standard and professional effects, and save, print, and e-mail the resulting image.";
fDesc[3] = ", getting power-ups to increase the rate/damage power of laser fire and changing the currently wielded weapon for more sophisticated ones. There are 10 weapons available in total.";
fDesc[4] = "executable files (exe) Flash animation (swf) Gif animation (gif) Images (sequence of bmp, jpg, or png) Now you can generate DreamScene content from your pics! More than 20 built-in filters will help you to animate water, clouds, smoke and create other natural effects. We create new filters every month and you can get them with ArtWaver updates.";
fDesc[7] = "playnearly any abstract board game or puzzle in the world.This makes it infinitely expandable. With the fullversion you can script your own newly-invented ga...";
fDesc[8] = "include a small footprint, quick execution of the P-code and a good interface to \"native\" functions. Full source code is included.";
fDesc[9] = "mood and emotions! With MoodBook your desktop looks like an art gallery changing art expositions either automatically or manually.";
fDesc[10] = "tile-based antique Greek games offered by Pythagoras as an excellent brain trainer for abstract thinking.";
fDesc[11] = "Casual abstract images combined from casual pictures of casual color.";
fDesc[12] = "can be flipped to reveal hidden possibilities. Win by making a stack of six pieces or capturing six enemy pieces. Virtual Plateau, the shareware version of the game, allows play against the compter or by email. It also has lots animated diagrams that explain the rules.";
fDesc[13] = "You can play against a friend or the computer or watch the computer play against itself to learn some moves. You can even assign names to the players, and if you play against the computer, you can select the difficulty level, which ranges from 1 to 6.";
fDesc[14] = "a screensaver. It will not display very complex animations, nor will display breath taking landscapes or cute creatures. This one will put your screen to dance. But don’t expect to dance along disco or pop music. Get ready to start dancing in outer space.";
fDesc[15] = "With great color and subtle animation that strangely makes it real.";
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 = '...';
}
}