var fDesc=new Array();
fDesc[1] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[2] = "shockwave is very small in size and takes couple of minutes to download and install in a computer.The installation process runs in back ground so it does not disturb your routine work";
fDesc[3] = "Real player is a free multimedia player,supports almost every audio and video file formats like,MP3,MPEG,MP4,CD,D VD VIDEOS and the QUICK TIME videos.Real player enables the user to buy and download music on more than 100 portable devices like Apple Ipod or an MP3 player.";
fDesc[4] = "aliens that are threatening the Earth. As you complete missions you get money to buy new and more powerful weapons, and be able to fight toughter aliens each stage.";
fDesc[5] = "personal details of every member of the family, as his birth date, gender, date of death, email, as well as phisical details, relevant notes and every detail you should need, including photos.";
fDesc[6] = "for access points, locate their position on a radar analyze the power of each item located, displaying their IDs and connect, an automatic mode.";
fDesc[7] = "the other information about the music is absent or missing-- one time it is the music genre that is missing while the other time it is the cover of an album. So Tagrunner can help the users in properly arranging their music collection.";
fDesc[8] = "get to bet how well you can do at the beginning of each round. A window appears asking you to choose one of the three options The thing is that if you miss your bet the game is over, so try no to shoot too high.";
fDesc[9] = "in order to progress in the game. In this case, the scenarios will be represented by different rooms in the castle. You can see your current location at any time in the game map. There are some extra minigames included.";
fDesc[10] = "can find two toolbars and three windows. In the first toolbar we can find all the eset servers names and select one of them to update our software..";
fDesc[11] = "From your private collection of love songs to entirely homemade video clips – everything's possible! For your songs, music videos, video emails, karaoke shows, funny clips, and much more.";
fDesc[12] = "you communicate with your headquarters, and keep track of your investigation. The game itself, basically consists on looking and picking items from different locations, following a list provided by the game.";
fDesc[13] = "formats. The program have good style and we can find two tags one is for download videos and the other for convert it. In the first tag can find the add box and below of the download window have two buttons one for play and the other for add and convert the video.";
fDesc[14] = "program does, is to access Getsubtitle.com database, and search for a specific file. In this enormous database, we can find thousands of files, from old classic movies, to the best current TV series.";
fDesc[15] = "will tell you more about it. Your soul has been taken away from you by the ghost of an old creepy man. Your soulless body can't survive like that, so you have to find it and get it back.";
fDesc[16] = "each puzzle and open your way to the end of each ancient room. This game will introduce you to a great adventure with matching puzzles. In your expedition you will find different keys and items to collect, they will help you in your way.";
fDesc[17] = "team in charge of exploring deep into the islands where few have been before. As in any hidden object game, your goal is to find all the objects on a given list before the time runs out.";
fDesc[18] = "certain items in different messy scenes. What makes this game a bit different from others of the kind is that it organizes the game into three different types of searches: Silhouette Round, Find 10 Round, and Puzzle Round.";
fDesc[19] = "scenario is a sea shore and the waves coming forward and backward. Each wave will bring some valuable items and junk, all together and mixed up. Your goal is to find in the mess the items the game requests to you, by graphically listing them on the bottom of your screen.";
fDesc[20] = ", an immunologist who works in a big hospital. But you are not alone, you work along with a group of specialists in order to cure some rare illnesses. If you saw TV series like E.R. or Dr. House you might get the idea.";
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 = '...';
}
}