var fDesc=new Array();
fDesc[1] = "and with just simple right click you are able to access all its features. All the basic effects of the application are based on the plugins for its complete customization and addition of new effects.";
fDesc[2] = "images like graphical images, photos and text. With S-Spline XL settings you can improve sharpness of the image, add film grains to an image, and apply sharp and soft edges to make all your digitals look more natural.";
fDesc[4] = "3D-based collaboration and CAD data interoperability. Increase engineering productivity by sharing Adobe PDF files containing precise geometry and product manufacturing information with users of free Adobe ReaderĀ® software to mark up 3D designs.";
fDesc[5] = "game will capture your entertainment and will put adrenaline in your gambling experience. The game will show you the rules of each poker game. It is very easy to play and the entertainment is full of fun.";
fDesc[6] = "own words and quickly upload interactive puzzles to the web for people to solve.";
fDesc[8] = "colors and allows you to use them to change the color of each object on the maps and edit the schemes. Every color has an RGB color code.You can choose a color or a respective RGB code to select any particular color.";
fDesc[19] = "use this module for comparison purposes, and even as a learning tool if you intend to learn French. Don't forget to download and install BibleMax software before installing this or any other module.";
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 = '...';
}
}