var fDesc=new Array();
fDesc[1] = ", rotate, enhance, view and capture any area of the screen display. It also lets you viewing in different color mode or through separated color channels.";
fDesc[2] = "same with others across the Internet in a simple and effective way. The software comes with inbuilt features such as imagery, street maps, historical maps, shaded relief, topographic maps and such other relevant features.";
fDesc[3] = "time, you can also race and perform other kind of missions. The game is smooth and offers a lot of fun to all kinds of gamers.";
fDesc[4] = "and editing tools. The DX Studio was the first product made that offered a range of tools in a single IDE.";
fDesc[5] = "files. Jed's version also adds a couple new features as well as support for the new texture rules implemented in HL. This is a great tool for any mod developer.";
fDesc[6] = "Files can be saved in a format different from the original by selecting the \"File - Save As\" menu option and choosing the type you want to save the file in. There is a batch converter module to convert several files at the same time.";
fDesc[7] = "similar, without worrying about the privacy of the source code. You can easily encrypt and un-encrypt those files without altering his design nor functionality.";
fDesc[8] = "combat in the game are well done. But a series of technical issues bring the game down a bit. It is also outdated, so you are probably better off with the newer games of the franchise.";
fDesc[9] = "the axis, translate and zoom the graphs in real-time. Graphs can be shaded with customized gradual color along the 3 axis. The lighting allows you to have a better visualization of the depth of the surface.";
fDesc[11] = "a cola can by way of bat. Be fast or the can explodes and sprinkles cola! Each level has its own theme and needs a different strategy.";
fDesc[12] = "Shapes can be shaded with solid, gradient, or bitmap fills, and exported as AI or SVG formats or as a rendered bitmap.";
fDesc[13] = "the modeler detailed control over every aspect of the model, down to each single leaf. Contains an L-System ge...";
fDesc[15] = ", cylindrical and spherical coordinates. Functions will animate with the inclusion of a time variable. Also, allows flying. Screen Saver included.";
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 = '...';
}
}