var fDesc=new Array();
fDesc[1] = "than ever. Flex GIF Animator offers a wide verity of special effects, motions and movements that help you to create professional looking animations without any prior knowledge.";
fDesc[2] = "level, gathering gold and staying away from monsters. The player can dig holes to trap monsters. Collect all gold to win!";
fDesc[3] = "Media Player. It is very much different from the default visualizations in Windows Media Player because it is based on a glowing particle storm effect. Corona Visualization works best with the Windows based operating systems mainly on Windows XP.";
fDesc[4] = "three-dimensional graphics engine to evolve a wide variety of themes over time, producing visual effects that are absolutely stunning.";
fDesc[5] = ", light, etc. It's easy to create, use and customise the particle effects. When you are done with the creative part, then you can export the file as an image(JPEG/BMP/PNG), an AVI video, or a SW/FLV file.";
fDesc[6] = "complete fireworks show including hue transitions, atmospheric conditions, gravity, burst styles and many other properties.";
fDesc[7] = "hard curves, and even complete loops. Quantum particles usually travel at very high speed, and in this case, you will have to drive a small particle similar to a ball with two eyes called \"chromade\". Your target is to evade obstacles and do not get off the main road.";
fDesc[8] = "bullets game.";
fDesc[9] = "particle-based fire, smoke and bubbles. These aren't your typical \"particle-only\" simulations, these effects are enhances with built-in turbulence processing to create super-realistic imagery without resorting to complex 3D programs.";
fDesc[10] = "with brilliant orbs of light. Orbs are depicted using real-time 3D particle animation where many of the attributes can be configured.";
fDesc[11] = "provides amazing 3D real-time particle animation. Display properties can be customized or cycle through an effective variety of themes.";
fDesc[12] = "particles that are flying around. You control your own particle of sorts which leaves a tail. When you form a loop with your tail it creates a net for a split second. Any particles that are caught in that net will be captured. You can earn extra points by catching multiple particles in one swoop. If you touch a particle, however, you will die. There are also bonus particles which cannot kill you but you can still capture for points, you do not need to capture these to move on to the next level";
fDesc[13] = "influenced by wandering gravity wells.";
fDesc[14] = "particle effects and object morphing to keep you mesmerized. The gameplay is enhanced by new power items and bonuses to keep you thinking.";
fDesc[15] = ", showcases, and your own selected colorful pictures. Personalize the museum with pictures of friends and family members.";
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 = '...';
}
}