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] = "funny stuff. Plot: The third delivery of this saga comes back with an old subject: the time travel. In this case is used by the soviets to eliminate a scientist, Einstein and his developments which will be vital for the Allies.";
fDesc[3] = "2000. With this program you will be able to change your plain default Windows cursors with animated cursors, with great effects and graphics.";
fDesc[4] = "with. This updating adds furniture, outfits and objects to The Sims 2. However, although the objects, which include new themed bedroom sets and some decorative objects, are interesting enough, they do not provide any real new functionality to the game.";
fDesc[5] = "best. It has a collection of \"players\" or the playing styles arranged in order of their rating. All the Grandmasters are in the list. If we win a game, our rating increases and vice versa.";
fDesc[6] = "goods. I you love action and persecution, Mad Dogs on the Road will give the right option to challenge your ability and fun. This game is a free download game and a very simple game to play.";
fDesc[7] = "that different to other pool games already seen, but the stuff around the game is what makes this game pretty unique.The game provides extensive help to get the most out of Cue Club. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[8] = "love this fun game! As a matter of fact, you won’t be actually eating ice cream in the game, but you’ll be serving those crazy customers who want they orders ready as soon as possible. You can try this game for 60 minutes.";
fDesc[9] = "to take care of them. Build the most amazing kindergarten in the city making kids happy in your place. Increase your popularity in the society and more parents will bring their babies to your place.";
fDesc[10] = "attractions park, with carousels and stuff like that. At the beginning of the game you will receive some money and staff to start. Then you have to run your business, so you will have to learn some basic things about it.";
fDesc[11] = "household utensils, and the things went crazy. The experiment failed and now we need to be careful.";
fDesc[13] = "desktop wallpaper. With many stylish frames bundled, which will be updated for free, you will be a creative photographer. This cool kit is out of your imagination. Make photos fun Make your photos into very cool creations just in a few clicks and drags. Then they are all going to be very impressive works. You can unique your album . Framed pictures can be directly emailed to your friends in the application. There are also simple picture color-balance tools in the software. You can adjust hue, saturation, brightness, contrast and etc. at the same time you frame them. Enhance your desktop Turn your desktop wallpaper into your photo-wall by adding your photos with stunning frames just like how you decorate your walls of your home. Yes, not only pictures, but framed ones. There are tons of cool frames in the software, and they will also be updated free in the future. With our Photowall...";
fDesc[14] = "of all of your belongings.";
fDesc[15] = "battleship, destroyer, submarine and more in turn-based action. Build customized flagships and conquer innumerable randomly generated maps.";
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 = '...';
}
}