var fDesc=new Array();
fDesc[1] = "accounts, such as Hotmail and Yahoo Mail. This program adds cool features for customizing your e-mail messages by adding stationery, emoticons and even voice messages.";
fDesc[2] = "just in beta version. This program-client provides access to the music online shop Nokia Music Store, lets you organize, discover and download music, create playlists and then copy it to mobile device.";
fDesc[3] = "can easily be used by any user, even by a beginner. Just write the html code in the \"Design\" window and use tags from the toolbox with editing tag properties, and change the style of the text.";
fDesc[4] = "together. When there are no valid plays, flip a card from the stock and try again. Jewels are dropped onto the board based on how you play the cards. The jewels dropped will match the suits of the cards that are played.";
fDesc[5] = "homework done more quicker and easier It can evaluate solve and graphic equations, run matrixes, find standard deviations, means or variances. I'ts a powerfull College Scientific Calculator with nice graphing capabilities";
fDesc[6] = "8-ball, Cutthroat, 3-ball, Golf, 14.1 Continuous modes. He/she can choose to play some Trick Shots, too. Each time you select a mode, Backspin Billiards will display a screen with the rules for that specific variant, along with the options you can modify.";
fDesc[7] = "firewall, and it doesn't have any trouble working with them. ThreatFire is an easy to use and free tool, that will help you to improve your PC security tremendously.";
fDesc[8] = "developed, inserts pictures, tables, hyperlinks, anchors, forms, PHP code, comments, etc. for making web pages in a very quick manner, editing them in What You See Is What You Get (WYSIWYG) mode, so anything is done is immediatly seen.";
fDesc[9] = "of all ages. This tool has a real time European City feel along with various views for the driver to ensure the 360-degree real experience with all those big trucks.";
fDesc[10] = "Internet without restrictions or limits. The client is completely free of advertisements and has a nice, easy to use interface.";
fDesc[11] = "explanations whatsoever, but only surrounds us wholly with the language we want to learn. By recreating connections between actual images and their verbal realisation, we learn a foreign language in the same way that we learned our native one.";
fDesc[12] = "unwanted and unauthorized access through internet or a network. PC Tools Firewall Plus monitors every application running 24x7 and saves your computer from trojan horses, keyloggers and other malware. You can manually set access for an application.";
fDesc[13] = "not been tampered with during shipment. It is a tool for network administrators, not too easy to drive, but safe and effective.";
fDesc[14] = "transport passengers around a city, adjusted to a timetable on a planned route, obeying traffic rules, and taking care not to upset or injure your passengers.";
fDesc[15] = "creatures and spun a web over their kingdom. You must solve 60 puzzles to break the spell and return the land to sunshine.";
fDesc[16] = "When clicking on a group of 3 or more same-colored bricks, the whole group disappears, and the hole is filled first by the elements falling from above. If a column is cleared, the elements move to the center of the field.";
fDesc[17] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[18] = "challenge against yourself. When you choose to play against the computer, you´ll play an 8 ball match. You can choose how many frames and which type of room you want to play in, and your desired player name.";
fDesc[19] = "amount of points possible in 20 spins. The game presents 3 modes: Classic, Mixed Matrix, and Patterns. You can change backgrounds, keep track of your scores, and control audio. Not available for Mac.";
fDesc[20] = "searching for cargo to haul driving a fantastic truck. Your goal is to carry put deliveries, for which you are paid, and get as much money as possible to change your vehicle and buy a more comfortable and fast one to complete the rest of the tasks.";
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 = '...';
}
}