var fDesc=new Array();
fDesc[1] = "features. SMS service helps you to send messages to people's mobile phones. I like Yahoo Messenger mainly because of its stealth settings. Games can be played on Messenger. All of these features make Yahoo Messenger the best Messenger software.";
fDesc[2] = "all about: destruction. The game features a single player campaign that allows you to follow the story of Nicko, an illegal immigrant who comes to America in search of the American dream.";
fDesc[3] = "guerrilla wars and the diamond struggles, is the setting for one of the most detailed and worked first person shooters ever. You play the role of a mercenary who is sent to Africa to kill a weapon's dealer who has armed both sides of a war that is killing a whole country.";
fDesc[4] = ", Yahoo Messenger, AIM, and ICQ. VoIP features include free internet calls, low cost PC to phone, and phone to PC calls.";
fDesc[5] = "find their favorite game or software and download it automatically to their PC. Impulse has multiple features that makes it one of the best digital distribution platforms around. Some of these great features include: * Doesn’t need to be on-line to play single player games. * Supports all types of PC software (games, applications, utilities, etc.). * Hundreds of games, applications, utilities, themes, and more available to purchase or free download. * Available free through Impulse: the Impulse Dock, which lets users organize all their programs and data together regardless of where it came from. * Next-generation community features integrated in. Make friends and play games together on-line, start a blog, chat, and more. * Delivers a next generation virtual platform that developers can freely use to add exciting new features to their games and apps.";
fDesc[6] = "trouble. Like most Rockstar games, you control your character using the third-person perspective, and you can get on vehicles like Bicycles, Skates, etc.";
fDesc[7] = "features. Like attractive and user friendly user interface with changeable skins, Audio chat, video chat, audio conferencing, file sharing, photo sharing, emoticons, screen capture, static/dynamic film capture, hidden mode of all window, auto hiding mode of main window and lots more to list.";
fDesc[8] = "world, that are members of this online community. You will be able to play pool, snooker, chess, poker, darts and other games using a single interface.";
fDesc[9] = "any web page. Read other's comments. Private message them. Comment the overall page, specific text, or any picture.";
fDesc[10] = "They are lost in the middle of nowhere and even worse, have been separated, you have to help Fone find his cousins and head back to Boneville. You will find amazing creatures along the way.";
fDesc[11] = ", tell stories, create your own world and meet interesting people from all over the world.";
fDesc[12] = "with photos selected by you. The program features a extremely simple user interface which cannot be customized and only allows you to select the picture with which you want to form your calendar and that's it.";
fDesc[13] = "on a trip to a magical forest where dwarves live. You will be able to see the lush vegetation around this funny character's house. Many creatures of the forest inhabit there and accompany the dwarf all the time.";
fDesc[14] = "activities to do and earn a lot of money. This game has different levels, to complete each level you must complete certain tasks like fishing, helping people to move things or cleaning.";
fDesc[15] = "presented with animations, pictures, and sounds. Easy to understand and remember. Master your life. Return to your Self.";
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 = '...';
}
}