var fDesc=new Array();
fDesc[1] = "browse through all the game available and download demos, trailers, or the complete game. Once a game is downloaded through Valve's Steam, users can use Steam's multi-player service.";
fDesc[2] = "matchmaking and text and voice chats. Features game news and downloadable demos. When you install GameSpy Arcade 2.05, the program seeks for supported installed games in your computer, in order to allow you to play them online. If it finds nothing, it will later help you to find some.";
fDesc[3] = "keep advancing from level to level. You will play at different stages, each stage is a different country. The game has got a nice storyline. You will be able to read the story from a book that will let you know what has happened and what will happen with the characters of the game.";
fDesc[4] = "applications and other customized software. It software is based on the Lua scripting engine which is common in all of the Indigo Rose tools. The output so obtained from the software is comparable to the output created by C++ and Java.";
fDesc[5] = "computation, visualization, and programming in an easy to use environment. It can be used in, Math and computation, Algorithm development, Data acquisition, modeling, and simulation. It cah aldo be used for data analysis, etc.";
fDesc[6] = "training, and robust quizzes without programming knowledge or multimedia skills. * Screen recording and demos: Capture and record screen activity and effortlessly synchronize audio and video.";
fDesc[7] = "including full screen capture, region capture, window capture, scroll capture, directx capture, video screen capture, sound record and etc.";
fDesc[8] = ", sound, webcam and commentary before exporting to Flash, AVI, WMV, PPT or EXE formats. Minimal impact on PC performance.";
fDesc[9] = ", demos, prototypes, simulations, and eLearning courses for the web, Mac and Windows® desktops, DVDs, and CDs. Integrate virtually any major file format, including video created with Adobe Flash® software and native 3D content, for the greatest return on your creativity.";
fDesc[10] = "with your own voice making this software a great utility for making your Video Tutorials, Demos or Product presentations.";
fDesc[11] = ", record voice commentary with the created presentation or demo, and even shows a “picture in picture” video via webcam. With the help of this cool application, the user can even share sales presentations and training demos anywhere anytime.";
fDesc[12] = "words, it can take screen shots of the desktop and even capture videos. This can be used for creating screen casts, demos, tutorials, software simulations and videos for the Internet. This version is combined with an extra add-on pack that allows the videos to be edited professionally.";
fDesc[13] = "to graph functions, but you can open examples, demos, and help. You can only perform zoom, change slider values, show axes, copy to clipboard, and play the examples. Examples and demos are for basic functions; two to four dimensions, complex variables, etc.";
fDesc[14] = "several formats, such as Flash, animated GIF, Java, .ASF (Windows Media Player), executable files, .AVI movies, .PDF or Word documents.";
fDesc[15] = "of repetitive typing and they save energy by automating repetitive sequences.";
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 = '...';
}
}