var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "features to provide powerful digital editing performance without any problem. Pictures can be copied from camera and other storage devices and can be captured from live videos and from video files.";
fDesc[3] = "with a fresh new look. Change the look and feel of your desktop icons with this amazing tool. This tool comprises a package of icons and is able to change or replace hundreds of icons on your Windows.";
fDesc[4] = "a big city. This exciting game is easy to play, and you will find three cool sport cars available to drive, although two of them will remain locked until you win some races.";
fDesc[5] = "Highly addictive, Ancient Tripeaks is full of fun and entertainment and it represents a convenient gate-away after a stressful working day. It features eight unique game modes to suit all types of players: from beginners to experienced!";
fDesc[7] = "is a beautiful one with the classic green colors. If you prefer a digital clock, it will display the well-known 7-segment characters. And still more. If you like the digital number format but think that the clock view is not what you want, you can opt for a digital text display.";
fDesc[8] = "the monsters coming to terrorize them. This game has good video graphics and cool audio effects and music. There are a lot of different monsters. The game has got a funny and interesting storyline that will keep you playing for a long time.";
fDesc[9] = "provides voice-changing capabilities of various personalities, right from a cool dude down to a matured elderly lady. This tool can be used for adding fun and comedy to instant messaging and voice-overs.";
fDesc[10] = "50 pictures, you will enjoy viewing the popular cat doing its favorite activities: taking its naps, sitting on the couch to watch TV, eating lasagna or playing jokes at the clueless Odie. The game is fully enjoyable and a demo version can be downloaded from the developer's website.";
fDesc[11] = "equipped with fighting weapons and a bomber. You are entrusted with a difficult mission - to eliminate all enemy raiders and land invaders.";
fDesc[12] = "objects can be attached to a page also allowing the text to be corrected. The page can be completely edited by changing fonts, colors, borders and adding images. Important features also include quick preview, free internet publishing with just one click.";
fDesc[13] = "software supports the most popular audio files, including MP3, WAV, WMA, OGG, M4A, AMR, RA, MR, ASF, ASX and many more.";
fDesc[14] = "The number of codecs this application can handle is really impressive, and is very likely to cover any user’s expectation, as ALL Windows media files are surely supported–AVI, MPEG, MP4, WMA, WMV, ASF, RM, DivX, XviD, AC3, OGG, MIDI, and many more.";
fDesc[15] = "It supports all the best-known video codecs, opening any AVI, WMV, MOV, FLV, or 3GP file, and converting it into files that you can then use to create your own VCD, SVCD, and DVD discs, or to play it into your favourite portable player.";
fDesc[16] = "audio files from one into another. Using this application, you will be able to extract audio from video files, to convert audio files from one into another and more. The program supports a lot of video and audio formats.";
fDesc[17] = "media but in an easy way, with no advanced knowledge required. It integrates a wide variety of effects and templates ready to be used and customized so it suits everyone's needs.";
fDesc[18] = "commands so that your CPU remains cool even when several applications are opened. There are many applications like this, but they often take different approaches. Most of them increase the speed of your fans so that more heat can be exhausted from the surface of the CPU.";
fDesc[19] = "application for ASCII Art creation. Art words, signatures or photos can easily generated with this small but powerful program. ASCII signatures are useful for being used along with emails or other shared documents.";
fDesc[20] = "With this program, you will be able to convert such video formats as AVI, MPEG, WMV, MP4, ASF, VOB, 3GP, VCD, SVCD, DVD and FLV to different video formats.";
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 = '...';
}
}