var fDesc=new Array();
fDesc[1] = ", using backgrounds, animated graphics, music and sound effects. You can use the Lite Edition for free, if you want more complex functions, you will need to upgrade to the Pro Version. You can even sell the games you produce.";
fDesc[2] = "doesn't provide that much new features but its not a bad game. If you are a racing fan, you should try the demo first, there is a chance you can love it or that you can find it a little bland.";
fDesc[3] = "possible performance by eliminating the performance and problems that make your games run slow.";
fDesc[4] = "knowing how to build and manage a classical Roman city. It is not easy at all, especially if you get in mind to meet the needs of your citizens. Build houses, roads and many other buildings.";
fDesc[5] = "the highest quality rich user experiences.This new version includes an easy installation of the Windows Platform SDK. It has tools for developing and debugging C++ code, especially code written for the Microsoft Windows API, the DirectX API and the Microsoft .NET Framework.";
fDesc[6] = "lines, Hexic rotates 3 of them. Match three or more of the same colour in a cluster to make them disappear. New blocks will fall from above and take their place.";
fDesc[7] = "modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[8] = "materials, simulations, interactive fiction, online multiplayer environments and more. Full tutorial included.";
fDesc[9] = "puzzles to unravel the mysterious nature of the game designer all the way to the twist at the end!";
fDesc[10] = "game-development house. Your company is formed in the winter of 1979 - at a time when arcades still ruled.";
fDesc[11] = "Casino understands that there is nothing more important than happy players. It puts son much efforts to make your experience with them the best it can be. Any problems you might have, they treat in a professional and timely manner.";
fDesc[12] = "disadvantages of Fraps will also be looked at in terms of capturing videos from your games. Included is an optional component, 'Search In One Step'.";
fDesc[13] = "by playing video games. Included is an optional component, 'Search In One Step'.";
fDesc[14] = "can teach the complete computer novice or child how to program computers within a matter of hours.";
fDesc[15] = "disadvantages of Camtasia will also be looked at in terms of capturing videos from your games. Included is an optional component.";
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 = '...';
}
}