var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "DVD from home videos. You can playback digital media files, and make an archive song collection in MP3. You can also backup personal data and legally record DVDs.";
fDesc[3] = "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[4] = "create, design, restore, or retouch images, plus many other actions that are usually carried out by important image editors. Paint.NET works faster compared to other image editors, being very powerful and easy to use at the same time.";
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] = "file to all popular video and audio formats with great accuracy and fidelity. But with this amazing tool, you will also be able to do many other tasks just like: Extract pictures from video files, edit your videos with powerful video editing tools, convert video files to audio formats, etc.";
fDesc[7] = "Share your movies all over, on iPods, YouTube, or the new HD home theater systems, with full support for discs as AVCHD, Blu-ray and HD DVD.";
fDesc[8] = "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[9] = "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[10] = "option for you. This small and simple utility is actually a powerful tool that will let you to capture anything on your screen. You will be able to choose if you want to capture a specific region or full screen.";
fDesc[11] = "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[12] = "features are customizable tag output as well as an extremely detailed information input for specific or grouped music files. TagScanner“s stronger feature is the web based tagging tool.";
fDesc[13] = "members on $100 bills! Swap faces and bodies! Change yourself into an astronaut or a personality on a poster. Change photos for practical jokes! FunPhotor is professional fun-photo-blending maker,Combine your photos to funny or surprise scenes!and it's also a valuable and sophisticated program for entertainment. It's just plain fun! Try the coolest image synthesizing software today and see the magic with your own eyes!";
fDesc[14] = "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[15] = ", use and manage picture information, archive, print, make CD or 3D pictures.";
fDesc[16] = "interface is really easy to use and intuitive, offering many customizable toolbars, sound effects, and useful hotkeys. It includes all standard text formatting features including spell check and auto-correction.";
fDesc[17] = "(e.g. red eye) or get creative. Use for web, email, or print. Photoshop plugins, animation, and much more. FREE. Registration required.";
fDesc[18] = "spreadsheet application; Presentations; the Visual Intelligence data analysis software; WordPerfect Lightning, a Web-connected note-taking app; and WordPerfect Mail for managing e-mail.";
fDesc[19] = "your pictures. The program offers a vast variety of different bright frames, backgrounds and clips which you can insert into your pictures or photos. You can also write text comments into your pictures.";
fDesc[20] = "generate GIF images by means of this program, or we can create our images with the program's editor - there we can draw and handle different effects that can be added to our drawings. The program supports more than 48 formats, some of them are GIF, JPG, PNG and more.";
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 = '...';
}
}