var fDesc=new Array();
fDesc[1] = "possible to handle all the boards in a single canvas and work individually or jointly. This way you can create several designs of various sizes neatly within a single file.";
fDesc[2] = "been here for a long time now. The game is just not what it used to be. So with Undercover, they tried to go back to its origins. The game now has cut-scenes and a plot. You are an undercover agent.";
fDesc[3] = "includes 230 ready-to-use effects, drawing tools, timeline and sophisticated scripting language. You can import vector art, images animation and sounds";
fDesc[4] = ", and sound in 2D or 3D space and then animating virtually any aspect of each element. You can also create text and vector graphics in After Effects using familiar Adobe tools, and then animate these elements to create visually innovative new motion graphics.";
fDesc[5] = "resembles an aquarium with fish swimming and playing around. Having such a saver is so relaxing. When I stumbled upon Dream Aquarium I was perplexed, but in a good way.";
fDesc[6] = "to virtually any media type. Design from scratch or jump-start projects from hundreds of customizable presets and templates — all from within a streamlined interface.";
fDesc[7] = "by Blitwise productions, it is easy and fast to play and fun and exciting. A range of 230 weapons is available with expansion packs each adding to the excitement.";
fDesc[8] = "bonuses will help you win and various difficulty levels will help you improve, participate in tournaments and win the grand prix.";
fDesc[9] = ", 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[10] = ", ideal for both print and the web. If you're working with photos then Xtreme Graphic Designer can handle everything from a simple one click auto-enhance of your photo through to awesome photo compositions.";
fDesc[11] = "It is ideal for artists working on detailed and pixel precise graphics as required for mobile systems or hand held video game consoles. It is also very useful to create light weight graphics for the web or Macromedia Flash applications.";
fDesc[12] = "Boris Blue now offers plug-in support for Adobe CS3 Professional running on Windows XP. Adobe After Effects and Premiere Pro users can create with unprecedented speed a wide range of professional grade 3D effects. Within the Adobe Premiere Pro editor, Boris Blue appears as a filter, a single track transition effect, and can also be used to generate a composition clip. In Adobe After Effects Boris Blue is available as a filter capable of utilizing up to 7 tracks from the After Effects timeline as video inputs.BLUE 2.5 also extends hardware support to many ATI graphics boards in addition to the many NVIDIA based graphics boards already supported by Boris Blue. This enables a wider range of editors and designers to add Boris Blue to their motion graphics workflow.";
fDesc[13] = "connection. However, it contains over 1.5 hours of royalty free video loops and effects!";
fDesc[14] = "software combines the best professional creative tools from Adobe with exceptional integration and productivity, so you can meet new creative challenges and take your business in new directions.";
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 = '...';
}
}