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] = "application ever. Nowadays, billions of people use Skype for several reasons. Firstly, it allows you to call anyone who has Skype for free. The call quality is great and you can even go on a video chat with anyone who has a camera.";
fDesc[3] = "(Rich Site Summary) feeds and useful shortcuts like people search, maps search, ICQ Chat rooms, ICQ Groups, ICQ Greetings, increase or decrease zoom.";
fDesc[4] = "searching for a particular folder in a hurry. Having color-coded folders makes it much easier to find the needed one and you don’t waste your time at unnecessary search";
fDesc[5] = "cleaning / deleting unnecessary files. It can also be used as a tool to monitor your network usage. Realtime Disk, Network, Memory and CPU usage graphs are available. Not much features in the program. Anyway, rating 3.";
fDesc[6] = "collections of all the imaginable music styles. Last.Fm opens a whole universe of new music, only by creating an account and downloading its freeware software.";
fDesc[7] = "and the instruction are clear and easy to understand. An old diary has been discovered. The problem is that most of its pages have been torn out. You must find the missing objects in the different rooms to unlock their doors and retrieve the missing diary pages.";
fDesc[8] = "can remotely access the files stored in our home computer from Internet. Installing a client, and using a web browser, we can navigate through our files, listen to our music, and watching our photo or video collection, just as if we were actually using our computer.";
fDesc[9] = "common search operations from a single graphical interface. You can search for videos, music, friends, news, and more. You can search for videos on popular sharing sites like Youtube and metacafe.";
fDesc[10] = "at the same time. Find people with the same interests as you. Join channels where you can meet people, or start your own channel!";
fDesc[11] = "you progress to the next level.";
fDesc[12] = "techniques including audio-visual clips, mini-progress tests and personal assessments. Stress is now considered to be a part of everyday life for many people.";
fDesc[13] = "the Search button. You can find people by keyword or you can get all friends on a certain user. FriendFinder will instantly save any range of friends you choose.";
fDesc[14] = "will allow you to keep all of your friends and family contacts perfectly classified. Within this flexible and convenient telephone directory, searching for your contacts in different fields is very easy, and printing some or all of your records is also possible.";
fDesc[15] = "Enjoy this game and adventure, search for help with the people in the kingdom and complete each task of this game.";
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 = '...';
}
}