var fDesc=new Array();
fDesc[1] = "famous books of J.R.Tolkien. Plot: Of course that you will be able to find all the characters of the book, but in this case you will be able to be in more battles than in the film.";
fDesc[2] = "addictive and easy to play, Puzzle Inlay offers over 60 picture puzzles to inlay with more than 18 varieties of gems. The purpose of the game is easy yet challenging.";
fDesc[3] = "choice suitable for all ages what makes it ideal for the whole family. Ultimate Dominoes presents five classic domino game variations, from easy to hard, thought to suit beginners and experienced players as well, so you can set the options to suit your skill level.";
fDesc[4] = "incredible space scenes that capture the mysterious beauty of outer space. Enjoy up close and personal 3D space scenes including 3D planets, comets, asteroids, stars and many other space objects.";
fDesc[5] = "allows texture, model and sound add-ons so they can be ported into the original Doom. It gives a new life to an already great game and allows gamers to live nostalgia and fun at the same time.";
fDesc[6] = "story behind it. Captain Livsey´s beloved pet, the mechanical cat, has been kidnapped by the Robots and taken to Mars. Your mission will be to help the Captain save his cat.";
fDesc[7] = "sheer happiness carrying you away to the seventh heaven. Put it on your screen and enjoy the pure perfection. If you are in love and are looking for a way to express your feelings to your sweetheart, then this romantic screen saver is just what you need.";
fDesc[8] = "Developed by Funkitron, this new release is about a trivia game comprising more that 3,000 questions divided into many categories within four game types: Free Play, Challenges, Versus and Episodes.";
fDesc[9] = "guide the animals through seven challenging game worlds so you can collect enough coins to pay for the restoration of their magnificent farm.";
fDesc[10] = "hundreds of stunning jigsaw puzzles. Test your eye for tons of picture sets and a varying number of pieces for you to select. You can choose any level";
fDesc[11] = "dangers of the jungle, defeating some of Africa's vilest villains, leading up to, and including, the tiger, Sheer-Kahn.";
fDesc[12] = "lack of remembrance is often misunderstood as negligence and creates wrong impression on other people. Thus, people always want something that could prevent them from such incidents. Sheer Notes is the solution of such problems for the users.";
fDesc[13] = "Explorer clubbed with powerhouse logging and scheduling functionality. It chooses important data like Microsoft Outlook, Outlook Express, My Documents, Financial Files and other Office files for back-up and has many advanced features like the Open file back up.";
fDesc[14] = "the awe-inspiring theme and aura it creates that make you want to have it on your desktop.";
fDesc[15] = "providing hours of sheer fun. Words Rock combines an engaging gameplay with an excellent grammar content that will make them succeed at school.";
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 = '...';
}
}