var fDesc=new Array();
fDesc[1] = "uninstalling programs, every change writes and deletes entries in the system registry. The deletion of entries will leave gaps in your Windows´ registry. Free Registry Defrag was made for solving this.";
fDesc[2] = "robots. If they touch you, you die. Your only weapon are bombs that you can leave behind. When they explode, they destroy everything in the near: walls, robots... or yourself, so be sure to be far from the explosions.";
fDesc[3] = "mechanical obstacles such as seesaws, suspension bridges, pendulums etc. You must overcome them to reach to the end of each level without dropping the ball.";
fDesc[4] = "him that some of the ghosts that Mortimer had evicted in the past, came through a portal. There are 9 anomalies scattered through time and space, and Mortimer must do something to prevent a Time Paradox.";
fDesc[5] = "ancient table, that are scattered around the world. Once you got all pieces, you will have the clue to find the most expensive gem: the \"World Diamond\".";
fDesc[6] = "files from your disk, the system will occupy and free clusters in your hard disk. This free space will be used by new files, filling the spaces scattered in your disc, splitting the files in multiple blocks.";
fDesc[7] = "moto with the cursor keys, riding the bike from left to right. You will have to race trying to get the bonuses that are scattered along the course, jumping obstacles and performing stunts, such as a 360 degree flip or a wheelie.";
fDesc[8] = "restore the look of the desktop. Many times, when the desktop resolution is changed , you find that all the icons are lying scattered over the desktop; simply use Restore Desktop, which is really small and has an automatic and clean functioning.";
fDesc[9] = "anyone could modify, use, and tinker with. It is developed under the GNU General Public License by many people scattered around the globe. The core developers are:";
fDesc[10] = "wonderland town with a huge, shiny moon. If you focus in the scene you can almost feel the cold and the snow slowly falling down from the sky. There are nice houses with their lights one, being the only shelters from the cold night outside.";
fDesc[11] = "You need to collect them to do the room. To remove a few of them you will have to arrange them in certain order.";
fDesc[12] = "GimPhoto window into single user interface. To make it confusion free for the users. This software solved the most needed requirement for the Gimp and GimPhoto users. The software works in stable manner for most systems.";
fDesc[13] = "loves balloons, and there are balloons scattered all over these winding jungle roads. The user has to help your Frog gather as many balloons as possible.";
fDesc[14] = "when you get scattered horses in the normal play mode. If you get 3 or more scattered horses, you get to play free games and you qualify for the Colt Cash feature. This feature doubles all your pays.";
fDesc[15] = "card, but will not substitute the scattered Gold dollar symbols. Each scattered dollar symbol which appears will get you an extra dollar in your Cash Vault. If you happen to get 3 or more of them, you are eligible for Cash Diamond free games.";
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 = '...';
}
}