var fDesc=new Array();
fDesc[1] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[2] = "interface. The free trial version allows the backup and restore features, but requires a license for the update feature.";
fDesc[3] = "technology. Main features: Benchmarking Software - Show how many Frames Per Second (FPS). Realtime Video Capture Software - Fraps can capture audio and video. Screen Capture Software. Support for Vista and DirectX 10 games.";
fDesc[4] = "need to tune NVIDIA GPU based display adapters. Advanced tuning features such as driver-level Direct3D / OpenGL and system tuning, flexible profiling system allowing to make custom settings on per-application basis etc. are included.";
fDesc[5] = ", complete and expandable. The concept behind the interface and work methods in Maya are extremely smart, and the program offers extreme control over every aspect of your work. The learning curve is steep though, so you will need to invest time in order to master this 3d beast.";
fDesc[6] = "activity, it is primarily intended for gaming.";
fDesc[7] = "ground, cornering the track with a speed of no less than 90mph! The game offers two race-modes; practice (just you and the track), race (you against 1-5 opponents). The game supports keyboard, mouse, joystick and steeringwheel.";
fDesc[8] = "offers the following features: quick view of the graphics configuration (graphics card / GPU type, amount of video memory, drivers version).Display of the main OpenGL capabilities (OpenGL version, texture size, number of texture units, etc.)";
fDesc[9] = "NT. With a new user interface and improved rendering performance through support for OpenGL, Cosmo Player provides the means for viewing and navigating interactive content, from animated ad banners to immersive 3D worlds. These enhancements, together with unrivalled distribution, lay the foundation for the future of online advertising, electronic commerce, and interactive entertainment. Cosmo Player 2.0 will introduce millions to high-impact, animated graphics via the Web.";
fDesc[10] = "many options directly accessible from there. It requires the OpenGL redistributable package installed on your system, which is available on all Windows family operating systems or can be downloaded easily.";
fDesc[11] = "But this clone version is specially programmed to take advantage of the full power of 3D machines today. So you can play this exciting game on 2D as always, or with a simple mouse click, change the screen orientation of the game, giving you a cool 3D view.";
fDesc[12] = "OpenGL graphics and various chess board sets (Classic Wooden, Opposing Elements, Figurines and Sketch). You can change the resolution of the screen, and even choose the Full Screen mode.";
fDesc[13] = "tiles from any angle and position. The game also has sounds and options like hint and undo.";
fDesc[14] = "The game has such features as hints, mistake spotting and it automatically saves the game for you whenever you exit and loads it when you start";
fDesc[15] = "source code.Originally crafted as a programming exercise to learn a variety of OpenGL 3D graphics skills, Sp...";
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 = '...';
}
}