var fDesc=new Array();
fDesc[1] = "to enter the new continent unexplored with their richness by exploiting some indigenous to conquer. This version has several bugs and lacks some features present in version 1.1, like some out-of-sync bugs and multiplayer scenarios.";
fDesc[2] = "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[3] = "and have never liked reading on the computer. The reasons are varied. Some people say that the monitor hurts their eyes. Well, yBook attempts to solve that problem by adding a texture to the background of the reader.";
fDesc[4] = "menu bar, one toolbar, a panel with a preview image and two tags, one window for see our photo transformed. Finally when we make click in the Process button we get our work done, but can click in the original image button and return to the original photo.";
fDesc[5] = "integrates with Adobe Photoshop, Paint Shop Pro Photo and other photo-editing applications. It gives you the power to apply any imaginative effect to an image surface without disturbing its original details.";
fDesc[6] = "needed to create seamless textures for use in 3D rendering packages, game development, web graphics, image and video editing.";
fDesc[7] = "modify its rings, shades, color and other elements, and to choose between the uncut wood pattern, or several types of cut patterns, like tiles or panels. You can export the resulting texture to various graphic formats for using it with another program.";
fDesc[8] = "program we can find a Menu Bar, three tags and one panel in the first Tag we have the start, in the second we have the textures and the third is the render.";
fDesc[9] = "many more effects. In fact while using artistic brushes you can completely manage the force of the brushes via its pressure sensitive tablets.";
fDesc[10] = "to edit the in-game water texture. Flight Simulator X has a very poor shader model for water, reflection intensity, glow effect, etc. Using this program you can replace default shader files of the Flight Simulator X and create your own ones.";
fDesc[11] = "functionalities have been provided to this version which is superior to the other two versions namely Basic and Pro. The studio version is an animation oriented advanced version of Genetica texture editor.";
fDesc[12] = "Normally you don't have to change any settings, Seamless Texture Creator will create the seamless texture with just a single click!";
fDesc[13] = "Genetica Basic. Innovativeness and productivity of a designer will increase considerably when one uses advanced and powerful functions of this program.";
fDesc[15] = "windows style interface is easy to use and navigation is controlled by mouse clicks. For example, if you wish to move your textured image in the Preview Window, pan the image by clicking on the left mouse button, holding it down and moving the mouse.";
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 = '...';
}
}