var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "user of compact cameras, ACDSee taking a more professional version for the advanced user. For the price it has is an interesting option for the purchase by the amateur .";
fDesc[3] = "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[4] = ", comparison, red-eye removal, emailing, resizing, cropping and color adjustments. It supports all kind of images format and also includes new tools for drawing on the imagery, fixes, optimization.";
fDesc[5] = "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[6] = "and features that can get your raw photos ready to the publishing or sharing. You can use special effects, denoise and red eye effect removal tools to enhance your camera pictures. Photo! Editor supports all the popular image formats, like JPG, BMP, PNG, GIF and TIFF.";
fDesc[7] = "photographers. You can view, organize, edit and convert all your images the easiest way ever. Ashampoo Photo Commander has everything that you may need to manage your photos.";
fDesc[8] = "used as background to create funny and interesting images. What is more, the program includes hundreds of masks to choose from, various clip arts, funny and sweet cartoon figures, frames, outlines and the possibility to include text to make your photos even more attractive and interesting.";
fDesc[9] = "and precisely. This incredible program offers a comprehensive set of tools that enables you to edit your pictures and assists in transforming your photo ideas into reality.";
fDesc[10] = "simple way. It includes all the common tools including Hue/Sat/Luma, Cloning, Sharpening, etc. and plenty professional tools like Barrel-Pincushion, Chromatic Aberration, Perspective Correction, to name but a few.";
fDesc[11] = "digital photos. The software offers a vast variety of different catchy effects such as Light filter, Dream filter, Edge filter, Weather filter, Gradient filter, Color filter, etc.";
fDesc[12] = "find a menu bar, one more toolbar and one window in it we can transform our pictures. This program is amazing and crazy, to take a time and have some fun with our pictures, I recommend it.";
fDesc[13] = "draw your own works of art. You can acquire digital photos from file on your computer or directly from a scanner and at once start to work with them.";
fDesc[14] = "incredible program enables you to perform various tasks, from basic to complex tasks such as editing existing images, creating new works based on existing images, creating new works from scratch and more.";
fDesc[15] = "enhance them. What is more, it also allows you to capture screens, create layouts, and select colors from a webpage, which makes it a great tool for web designers.";
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 = '...';
}
}