var fDesc=new Array();
fDesc[1] = "and buttons in just a few minutes. It uses a large number of dialogs to customize your work. Interface is highly customizable. It has excellent features like photo enhancement, fix perspective distortion and digital retouching techniques. GIMP is not a design suite but is free.";
fDesc[2] = "features to provide powerful digital editing performance without any problem. Pictures can be copied from camera and other storage devices and can be captured from live videos and from video files.";
fDesc[3] = "compatibility and an easy to use API. GTK+ it is written in C, but has bindings to many other popular programming languages such as C++, Python and C# among others. GTK+ has a large development community, as can be seen by the lists of contributors in GTK+ release announcements.";
fDesc[4] = "and developers worldwide. Ubuntu comes with a series of already installed applications that are categorized by functions like: Accessories, Games, Graphics Internet, Office and Sound & Video You can run Ubuntu as a desktop operating system or configure it as a powerful and secure server.";
fDesc[5] = ", cut, fill and select. It’s intuitive and user friendly interface will help you learn to use it quickly or almost make no difference if you are a photoshop user, avoiding to have hours in front of your monitor looking and watching tutorials.";
fDesc[6] = "image editor adapted to look and feel more like Adobe´s application. Besides been free, GIMPShop adapts its terminology and menu structure to look and feel more like Adobe´s application.";
fDesc[7] = "developed as a free alternative to Photoshop program and also it can be used with the earlier versions of Photoshop 5.5-6.0. GimPhoto is based on Gimp (GNU Image Manipulation Program).";
fDesc[8] = "You can use it to illustrate all kinds of graphic material. It uses an entirely new designed system, simpler and easier to learn, and it is perfect for designing all kinds of compositions whether or not technical in nature.";
fDesc[9] = "GimPhoto window into single user interface. To make it confusion free for the users. This software solved the most needed requirement for the Gimp and GimPhoto users. The software works in stable manner for most systems.";
fDesc[10] = "shrinked 100 pictures the software can be used with the limitation of an added watermark to each image.Also features batch compression.";
fDesc[15] = "minimizing/maximizing actions. It won’t allow configuring it to work with other multiple-windows applications instead of GIMP. It's a freeware application.";
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 = '...';
}
}