var fDesc=new Array();
fDesc[1] = "accounts, such as Hotmail and Yahoo Mail. This program adds cool features for customizing your e-mail messages by adding stationery, emoticons and even voice messages.";
fDesc[2] = "send a team of saboteurs at the world ducks' rally. This team was to commit an act of sabotage in the hunters' village.";
fDesc[3] = "dodge and duck through an intricate theme park with the unflappable goal of saving the infamous Mr. Meow.";
fDesc[4] = "by a magic wall. And, in order to do that, a little train will be your main weapon. A lot of sly enemies will try to get in your way, so you will have to be careful and avoid hitting them.";
fDesc[6] = "the world ducks' rally. This team was to commit an act of sabotage in the hunters' village.";
fDesc[7] = "when the narrator is talking and they are also extensively used in dance productions. Side chaining in software has been made easy with db audioware Sidechain Compressor 1.1.";
fDesc[8] = "ducks that will not only fly and try to scape, but will also try to attack you shooting you different colors. On each stage you will have a number of ammo that will be reduced every time you shoot at them.";
fDesc[9] = "book that allows you to collect exchange and organize your recipes and much more. You will be able to print out your cookbook and create also web pages! They have a large database with over 290 China food recipes available, all to download.";
fDesc[10] = "Hunt. You will be using your mouse, and the idea is to aim and destroy colored discs that fly around a heavenly landscape. The game entertains for a while, and can be a good pastime for moments of leisure.";
fDesc[12] = "accessible, spreadsheet-like format. You can selectively remove items, and sort, group, search, print, and export everything.";
fDesc[13] = "will allow you to own several of these lovely animals without the troubles of having a live one at home. You can forget about cleaning after them or even feeding them.";
fDesc[14] = "exploring new areas and collecting special powerups! MicroMan's up-beat music, spectacular sounds, colorful graphic...";
fDesc[15] = ", Bugs Bunny, Lola Bunny, Tasmanian Devil, Wile E Coyote, Road Runner (beep beep!) and more. With 20 full size wallpaper pictures.";
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 = '...';
}
}