var fDesc=new Array();
fDesc[1] = "to play up to 25 songs per month for free, select the songs you want from millions of songs in RealNetwork's music library and play 25 premium Rhapsody Channels without limit.";
fDesc[2] = "shape to win an upcoming tug-of-war competition. You´ll have to serve the customers of your fitness center, and will have to conquer different goals in order to get to the next level.";
fDesc[3] = "You assume the role of a female journalist in search of the truth in the bizarre adventure that is Mysteryville Deluxe. You visit different locations and interview the residents.";
fDesc[4] = "and sound. The scenarios become full of life and colour, the designers have paid much attention to the design of details, the shadows and light effects are very good.";
fDesc[5] = "list of titles which represent different missions for Nancy Drew to solve. This time Nancy Drew will be going to Hawaii to serve as a research assistant to Dr. Quigley Kim.";
fDesc[6] = "town of Good Tidings by decorating the houses. Your job is to help other decorators to jazz up residents’ homes with decorations, items, and furniture to cheer them up.";
fDesc[7] = "dangers of the jungle, defeating some of Africa's vilest villains, leading up to, and including, the tiger, Sheer-Kahn.";
fDesc[8] = "residents in your system could outgrow making your system slows and sluggish. Manual cleaning of these residents is a real pain in the neck. But now you could delegate this job to Advanced Windows Cleaner 1.0.";
fDesc[9] = "continuously aired storm warnings to the community, have developed a weather alert program, the 10-11 Web Alert, that you can download free of charge, which will warn you about serious weather threats approaching.";
fDesc[10] = "When serious weather conditions arise, vital information relating to storm conditions will be displayed as a crawl across your computer screen and information will be sent to you from ABC13 to keep you safe in an emergency.";
fDesc[11] = "the world!";
fDesc[12] = "quickly generate work orders, print copies and automatically save to the powerful database.";
fDesc[13] = "stations.";
fDesc[14] = ", Millionaire 2020 is the program for you! Free yourself of unwanted debt...with the Debt Hammer(TM)! It's simple and easy to get started!";
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 = '...';
}
}