var fDesc=new Array();
fDesc[1] = "with Spybot - Search & Destroy. This tool specializes in the removal of these kinds of threats while the Antivirus companies are barely just offering this.";
fDesc[2] = "hard not to compare the game with Legos, though it doesn't have the license it does have the fun. It is an excellent choice of game for those young builders out there.";
fDesc[3] = "through Bikini Bottom in this game, where you can play with another three players, impersonating your favorite characters (SpongeBob, Sandy, Squidward or Patrick).";
fDesc[4] = "Company. This is the first game which is an adaptation of a book by the famous writer Agatha Christie. Sound and graphics: The piano music is excellent, its seems that the designers noticed its relevance in the game but it is somewhat repetitive.";
fDesc[5] = "eras in order to steal the Krabby Patty Formula. You have to help SpongeBob rescue his friends and stop Plankton from getting the krabby patty secret formula.";
fDesc[6] = "program is of special interest for astronomers, amateurs, and all those interested in exploring the Earth’s natural satellite. Due to its precision and detail of its data, Virtual Atlas Moon has won the recognition of astronomers and prestigious scientific publications.";
fDesc[7] = "There's a choice from more than 450 (!!) text effects and over 80 other effects.";
fDesc[8] = ", Favorites menu, and the Address bar. Usually, when you delete your temporary Internet files, those favicons are lost. FavOrg preserves them.";
fDesc[9] = "Plankton's nefarious, evil plans! Sweep the bottom of the sea and be on the lookout as you avoid slimy tentacles and their gooey projectiles!";
fDesc[10] = "Blasterball 2. From shamrocks on St. Patrick's Day to falling snowflakes in the winter, this edition provides seasonal bliss for every occasion. You'll be whisked through layers of mesmerizing patterns and 3D graphics.";
fDesc[11] = "background while you work. Plays music, changes desktop wallpaper and more!";
fDesc[12] = "shamrocks float and leprechauns dance around your screen.";
fDesc[13] = "Happy St. Patrick's Day, moves around your screen. The registered version plays music.";
fDesc[14] = "and animated screensaver? Just have a look at the Animated Screensaver \"Irish Pub\". Today all of people on holiday parade devoted st. Patrick's ...";
fDesc[15] = "beautiful and animated screensaver? Just have a look at the Animated Screensaver \"Irish Spring\". This Screensaver devoted st. Patrick's Day. Saint ...";
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 = '...';
}
}