var fDesc=new Array();
fDesc[1] = "Heroes of Warcraft III, three missions showing the Orcs' battles and allows playing through Battle.netâ„¢. The missions included in this demo are totally new and do not appear in the full version of the game.";
fDesc[2] = "the Manglik Dosh.Just type Name,Birth-date,Birthp lace,Birth-time of the girl and the boy and Kundli will automatically tell the user whether the marriage is valid or invalid";
fDesc[3] = "a lot, and easily. In this case, the game has little to nothing to do with the Tom Clancy world. You are given hints that you are indeed in the timeline portrayed in several other TC games, but that is it.";
fDesc[4] = "versions. The main difference is that the game is done completely in 3D and allows a total control of the camera, and may change the angle of vision, getting closer and farther from the details of the adventure map as well as during the battles.";
fDesc[5] = "especially if you are a beginner and also if you are a good opponent to the experts players. You will be able to play against eight poker champions at the same time.";
fDesc[6] = "also change song voices and create animal sounds. With a professional design you can use features like the Voice Morpher and the Parody Mixer. The utility works with the major VoIP and Instant Messaging programs. You can also modify timbre and pitch with the help of a wide range of presets.";
fDesc[7] = "the action: you are not going to fight the terrible Stroggs all by yourself, since you will have the support of elite squads made up of special marines who carry with them state-of-the-art technology, and with whom you will be able to interact.";
fDesc[8] = "Berlin Wall hadn't fallen? Well, we would be living in a quite different world. That is what the game is all about. The Berlin Wall didn't fall and the Soviet army kept on getting more and more powerful.";
fDesc[9] = "well known programs of instant messaging and VoIP. You can use background sounds street voices, nature, forest and waterfalls. You can perform song remixes, change the song voices, add effects and save the new song in standard formats like MP3 and WMA.";
fDesc[10] = "fishes you want to see (up to 5 different types), the foreground and background colors, the location, amount, type and sound of the bubbles, if you want a frog or not.";
fDesc[11] = "Scrabble is maybe the most famous words game ever made, and it's back in this new interactive edtition. In this game every word counts. No matter if your are a beginner or an expert, by using this game you have the chance to sharpen your Scrabble skills for sure.";
fDesc[12] = "top-down action games, and this is not the exception. Similar to Alien Shooter, you now must fight Zombies, and it is somehow more gripping than the Alien Shooter games. If you like arcade action games, you'll love this.";
fDesc[13] = "nature or a bus stop. The program also works fine with the most common VoIP and Instant Messaging applications. This version also offers the Parody Maker and Parody mixer. Another feature is the Voice analyzer, that allows you to analyze your voice.";
fDesc[14] = "many new features, it contains over 20 marine animals. Undoubtedly, the Zoo Tycoon series is one of the most successful franchises in this area.";
fDesc[15] = "focuses on the character that gives its name to these famous film, a small robot that after 700 years cleaning up the planet Earth, finds that he is not alone in the universe.";
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 = '...';
}
}