var fDesc=new Array();
fDesc[1] = "automatic), precision adjustments of contrast, luminosity (brightness), color saturation, etc. as well as gamma correction on pictures too dark or too bright. Selection of several shapes: rectangle, ellipse, rhombus, triangle, polygons, etc.";
fDesc[2] = "digital image. Is a powerful product, yet easy to use. It includes the basic functions needed for a beginner and the more complex functions used by pros.";
fDesc[3] = "includes 230 ready-to-use effects, drawing tools, timeline and sophisticated scripting language. You can import vector art, images animation and sounds";
fDesc[4] = "vector and raster images, so you can quickly mock up designs, or leverage assets created in other Adobe's applications. This version features a number of new Auto Shapes that you can drag onto your layout which randomly generate a new shape each time you click on it.";
fDesc[5] = "tools: - A complete management suite to keep your collection organized. - A comprehensive photo editor for both novices and experts. - An extensive collection of presentation options to boost your creativity.";
fDesc[6] = "print wonderful business cards of multiple sizes. It includes many high-quality business card templates and logos, as well as great design tools and background images to help you design your own cards in a snap.";
fDesc[7] = "your hands to alter SWF files. You can simply modify or completely re-do your SWF movie even if you have lost the original FLA file.";
fDesc[8] = "seconds. The program includes three capture modes: a window or menu, a free region or a fixed sized region. In the latter you can select the exact width and height of the region.";
fDesc[9] = "of your photos, create collages and add effects to your images. You’ll be able to upload images in BMP, JPEG (JPG), GIF, PCX, PSD, PNG format, edit them and then save them on GIF, BMP, PNG, and JPEG format. Available in 8 languages.";
fDesc[10] = "section of it. Whether you are looking to capture a specific window, your whole screen or an object, then Capture Express lets you do it. You can choose from several forms, such as diamonds, rectangle, or a stars among others shapes.";
fDesc[11] = "will help to provide you with amazing design, printing and database features that will help you to create any size of label that you are looking for.";
fDesc[12] = ", detailed images with an astonishing depth and \"3D likeness\". By depicting with 3D-rendered shapes (globs) and appending a variety of coloring functions, Gloodle allows you to produce fantastic images.";
fDesc[14] = "quality loss by using amazing algorithms of vectors, shapes, morphing, Z-buffer, fonts and other revolutionary optimizations.";
fDesc[15] = "as work in progress or save as image. Send to any destination: clipboard, file, email, web, graphic editor, printer/fax.";
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 = '...';
}
}