var fDesc=new Array();
fDesc[1] = "modification of XP system files in order to make it look like Windows Vista. Mentioned in multiple magazines, Vista Inspirat is one of the best ways to change quickly and easily icons, explorer configuration and others.";
fDesc[2] = "overview that helps you keep track of your expenses. Put savings targets and then perform a monthly analysis of your finances to see how much you're really saving.";
fDesc[3] = "the game. You must change the creatures position on the board in order to form chains of three or more identical creatures. When you succeed in it, the chain will disappear, and the empty space it leaves become occupied for new creatures.";
fDesc[4] = "ease. It is easy to install and use. Mainly designed to create a test environment but powerful enough to handle the real thing.";
fDesc[5] = "professionals, is so easy that can be used by any PC user or security enthusiast. If the computer isnt connected to a network it will run the simple test (recommended) and display the security vulnerabilities and actions to take.";
fDesc[6] = "determined intervals. This program, as its name suggests, is specially focused on taking care of our eyes. It will remind you to take a break and relax your eyes showing you pictures or making you do visual exercises.";
fDesc[7] = "lets you apply components out of IKEA´s catalog, to see how they fit. You can even print later a shoplist with everything you included in your project, save your design to an IKEA server and ask friends and family for advice.";
fDesc[8] = "your XBOX and XBOX 360 games. XBOX 360 games cannot just be copied with this application, though. It is completely illegal to copy games that you don't own; just a word of advice.";
fDesc[9] = "your game. Offers exact odds and advice while you play.";
fDesc[10] = "your pot. Pay close attention to your leprechaun teacher. His advice and your talents may become part of Leprechaun lore.";
fDesc[11] = "of your PC. In the notification space of your desktop it shows you a message, with the information of the last break and the time for the next one.";
fDesc[12] = "odds calculator, providing you with the odds and recommendations while you play, in real-time";
fDesc[13] = "attractive. It does not matter what you are looking for (or even not): a shortcut to the system volume, an alarm clock, an atomic clock with live sync, countdown timers, a pinned calendar, or...just a good advice from the \"Hainted 8-ball\", all this you can get from Gong.";
fDesc[14] = "second by second. Three trading Strategies. Seven Pairs: EUR/USD GBP/USD USD/JPY USD/CHF AUD/USD USD/CAD GBP/JPY.";
fDesc[15] = "is calculated during the trading day following the markets movements second by second. Five trading Strategies to choose from.";
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 = '...';
}
}