var fDesc=new Array();
fDesc[2] = "Games. One of the most eagerly awaited strategy and adventure games, Age of Mythology, finally comes out of Ensemble studies, the creators of the classic game, Age of Empires, the most outcoming of this video games genre.";
fDesc[3] = "defragmented again! It constantly keeps an eye on your file system and makes sure that all the clusters are allocated properly, so your hard disks never get defragmented again. And all that without slowing down your computer’s performance.";
fDesc[4] = "Faerie Queen’s Magic Jewels! Cast magical spells to battle ruthless monsters and the forces of darkness in your quest to recover the Queen’s glittering treasures!";
fDesc[5] = "can capture full program windows, images that appear in systems with multiple monitors, full spreadsheets, full scroll-down webpages…off-screen content included, all in one single image that you can later edit without exiting Magical Snap 2.";
fDesc[6] = "computer. Using a password provided by the user, it encodes a file or a number of files safely, saving them in your computer or allowing you to burn them to CD or DVD for backup and distribution purposes. It also includes a removal utility that completely wipes any file from your computer.";
fDesc[7] = "Adventures in Wonderland, Alice's Magical Mahjong is an imaginative journey through a charming world. Help the quirky characters of Wonderland by matching tiles in more than 175 layouts.";
fDesc[8] = "In this medieval-inspired time management game you have to enter a magical world and prepare delicious food for hungry customers. Upgrade your equipment and use magical devices and abilities to your advantage.";
fDesc[9] = "files. The software does some sort of encryption manipulations to make the files impossible to read without decrypting them. Thus the contents of your files are always protected even if the files can be accessed.";
fDesc[10] = "potions to magical creatures in a tavern in the world of fairies. However, you will soon discover that the tavern is haunted, and you can not leave unfinished any of the shifts. Now you must respond quickly to all customers, if you want to be able to leave the tavern.";
fDesc[11] = "defragmented for them. In fact, they hardly even notice it's there. The principle is 'Install & Forget'. Ashampoo Magical Defrag runs in the background as a service, defragmenting when necessary to keep the hard disk tidy.";
fDesc[12] = "business through the whole kingdom. While you get more profits, be sure to buy more equipment so you will be able to offer new products to your customers.";
fDesc[13] = "install the application, the only trace you will see of it will be on the tray menu. There, you have to access the settings just so that you know how to activate the thing. You can only turn the magnifying glass on and off with a hotkey.";
fDesc[14] = "know it's risky. You know anyone could intercept your mail on its way across the Internet. You know the files aren't safe on your computer. But data encryption is complicated so you try to forget about it.";
fDesc[15] = "a trip to a magical world of fantasy. You will visit a mysterious forest where probably fairies exist. You will be able to walk through the dense and lush vegetation, climbing over fallen tress covered with moss.";
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 = '...';
}
}