var fDesc=new Array();
fDesc[1] = "file formats as well as DVDs, VCDs, and other streaming protocols. It includes a large number of common encoding and decoding codecs like 3GP, AVI, FLV, etc.";
fDesc[2] = "java programmes and should be installed to run java programmes. It comes with a bunch of very handy new features which enable to develop java programmes with high quality.";
fDesc[3] = "execution of java-based software, and also the visualization and interaction with java applets embedded in web pages.";
fDesc[4] = "Microsoft and some of the other leading gaming industries. It mainly focuses on four key features – Quality, Compatibility, Safety and Ease of playing. It is easy to download and install and supports Windows Vista and Windows XP Service Pack 2 Operating Systems.";
fDesc[5] = "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[6] = "multiplayer games over the internet and chat at the same time. You can play games with other users all over the world and join to leagues and tournaments.";
fDesc[7] = "all know: \"A long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[8] = "the best internet TV shows and videos in one powerful application. New channels arrive daily in the built-in channel guide; it’s an extension of Firefox that have multiple options.";
fDesc[9] = "long, long time ago, in a galaxy far away...\" That phrase alone gives me the goose bumps. The whole premise of the game is to fight a Chicken Invasion. Humanity has been killing chicken right and left for thousands of years.";
fDesc[10] = "files and download content off multiple peers over the Internet. Most of them are system specific; that is to say, they only work on a single operative system. Azureus was developed using Java, which makes it universal.";
fDesc[11] = "environment.";
fDesc[12] = "that it contains libraries that provide functionality to deploy fault-tolerant, distributed, multi-tier Java software, based mostly on modular components running on an application server.";
fDesc[13] = ", is now available for Windows Vista. This is the first Live platform title for PC which is similar to the gamers community platform Microsoft developed for its Xbox 360 console.";
fDesc[14] = "old classic platform games, in which you will have to jump, run, beat enemies and collect power-ups. Your mission is to guide Alex through the jungle to rescue his girlfriend Lola from humans who want to make a bag of her.";
fDesc[15] = "the crucial task of managing the build process, in a compiler independent fashion in an operating system. It comprises of many simple configuration files, which collectively form the standard build files for normal working.";
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 = '...';
}
}