var fDesc=new Array();
fDesc[1] = "your Web Browser and provide you with tools that will help make your searches more efficient. Ask Toolbar works with both Internet Explorer and Mozilla Firefox. There are different versions for each browser, though.";
fDesc[2] = "entrancing play modes, explosive new gems, and dazzling special effects! Brilliant colors, incredibly smooth to play, good sound effects.";
fDesc[3] = "employed for a TV show production. This fun and easy-to-play game turns you into a very busy waitress trying to keep the customers happy, and that could get more difficult than it sounds. Try this game for 60 minutes before you buy the licensed version.";
fDesc[4] = "without paying a coin. You will even find some cable channels and in their original languages, pretty amazing. After trying it for a few hours, watching all kind of channels the test for malware and viruses that the program may install during the installation process was successful.";
fDesc[5] = "as ducks, flags, clouds, and many more. Also, you can reverse the colors, solarize the image, apply effects and so on. The options are endless and if you find that the preloaded choices are not enough, you can always download more.";
fDesc[6] = "includes more than ten beautiful photographs and the possibility of transforming your own pictures into a new jigsaw game. The full version of Magic Jigsaw is absolutely free.";
fDesc[7] = "viewing, editing or browsing on a later date. Metaproducts Offline Explorer Standard supports industry-standard technologies such as FTP, different proxy servers, Java classes, scripts written in Java and VB, Cascading Style Sheets (CSS), etc.";
fDesc[8] = "client, setup a new account and start a new game. You will find very friendly people who will help you on your way. If you like to play such games, try this one.";
fDesc[9] = "been inactivated for a determined time. The program will never stop showing your favorite pictures until you interrupt it. More than that, this utility will automatically download pictures from the Internet and show them.";
fDesc[10] = "simply set the screensaver as you want. Enjoy this Matrix world and release daily routine for a moment.";
fDesc[11] = "suit its colorful graphics automatically, when it was launched. The bright, cheerful interface offers easy navigation and there is a choice of three game modes - Timed, Untimed, and Endless.";
fDesc[12] = "by shifting a jewel with any of the others that surround it. Bejeweled 2 also have 4 game modes: Classic, Action, Puzzle and Endless. There are also some features as screensaver and stats which complete a great game.";
fDesc[14] = "gather pearls that will allow you to purchase special powers, you will also be able to use different powerups and earn trophies.";
fDesc[15] = "feel part of that strange and hard to understand world. You will be walking in that familiar long and white corridor, opening doors as you pass near them.";
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 = '...';
}
}