var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = ", 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[3] = ", resolution changes, cropping the video very easily. AVI ReComp shows every detail of the AVI file you import for re compressing like, video duration, size, bit rate, resolution, frames, fps, audio type, audio channels (mono or stereo), audio bit rate and audio size.";
fDesc[4] = "steps. This incredible software enables the user to select and remove an object in a picture or photograph from its background, and then compose the result on a different background to create a new scene.";
fDesc[5] = "output files in original or converted JPG, BMP, TIFF, GIF, PNG, PCX, TGA. This full-featured image-processing software generates preview in real time. Advanced styles come as an added value for making of your pics or videos the coolest ones!";
fDesc[6] = "alignment, resizing as well as cropping of pictures and helps greatly in morphing images. It comes with amazing capabilities such as computing and displaying real time animations, and saving them or printing them within a moment.";
fDesc[7] = "telling you; it is a time-saver. This tool allows you to carry out a simple task: take screenshots of your screen. I know there is a button that reads something like Prt Scr in your keyboard and that it will take a screenshot of your screen and take it to the clipboard.";
fDesc[8] = "comes with multiple options and features that will give as a result a professional-looking banner. Plus it outputs in three formats: Flash, HTML and GIF. The program is simple and does not require the user to have Flash or HTML skills.";
fDesc[9] = "and DVD players. EasyPhotoTools organizes the images and videos and make a DVD slideshow. With this software, one can add an appropriate title as well as text dialogs for the slideshow in addition to the images, music and video clippings.";
fDesc[10] = "single utility that replaces almost all different utilities for various applications that deals with image editing to generating HTML codes and Emailing to FTP uploading, etc.";
fDesc[11] = "also parts of the frames by cropping it, which gives a zoomed in, cramped image with much important video information.";
fDesc[12] = "a very intuitive way. The resulting photograph will maintain the same level of quality present in the original file, and will retain all the Exif information embedded in the parent image. It allows for batch cropping, applying the selected settings to all the active images, if desired.";
fDesc[13] = "file, and output can be saved in various other formats. By cropping a video, the user can zoom in to the desired frame and can focus on more important parts of the video frame. The user-friendly interface makes cropping very easy and simple for the user.";
fDesc[14] = "rectangular cropping with 7 different formats supported including Jpeg, Bmp, Gif, Tiff, Png, Emf, and wmf.";
fDesc[15] = "correction is performed under user selected standard.";
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 = '...';
}
}