var fDesc=new Array();
fDesc[1] = "effects to your photos. Within the application you will find a wide set of useful effects like: Rotate to left or right, fix red eye, enhanced color, denoise, deblur, make up, lighting, straighten, resample and crop.";
fDesc[2] = "installed. CDS 2 adds a toolbar to the system tray, and an icon. While running, the program will index the content of your hard disk in the background, to perform searches quickly.";
fDesc[3] = "network without the need of it being installed on these other computers. It generates a list of duplicate files found which by the way can be sorted, exported and acted upon. It even lets the user save the results of a search.";
fDesc[5] = "mouse cursor. This application is very easy to use. Just select an area of the screen or a window you want to record and click on the start recording button. You can stop the recording at any time using Ctrl+Del buttons.";
fDesc[6] = "can extract pictures from most popular video format file, as it supports WMV/ASF/ASX/WVX/WM/WMX /RA/RM/RMS/MND/RAM/MPG /MPEG/RMM/R1M/MP2/DAT/ AVI/FLV/VOB/MOV/QT.";
fDesc[7] = "viewed. 11view from Stratapoint is a unique image viewer that provides the flexibility of converting pictures without any distortion or disturbance in quality.";
fDesc[8] = "thumbnails, full screen mode, slide shows, printing, picture disk creation. 14 file formats+QTVR. EXIF/IPTC support.";
fDesc[9] = "use way";
fDesc[10] = "between other things. With this software, you are going to be able to find pictures on your computer, watch them, print them and send them via e-mail.";
fDesc[11] = "change look and feel of the program and save your interface layout. All popular graphic formats are supported.";
fDesc[12] = "MPG, MP3 can be located and played. Multiple Play Lists and Slide Shows. Extensive Image Editing including merging sections of pictures.";
fDesc[13] = "browser and fast picture viewer for convenient reviewing and selection.";
fDesc[14] = "opening a picture folder. It works on various versions of Microsoft windows like Windows 95, Windows Me, Windows NT, Windows 98, Windows 2000, Windows XP, etc. It is similar to the Microsoft XP picture browser.";
fDesc[15] = "interface and is simple to use. Despite its simplicity it offers many advanced functions, such as thumbnails, exporting to HTML & thumbsheets";
fDesc[16] = "collection with ease. It supports all popular graphic formats, can view images as slide-show and has other featurs such as image descriptions.";
fDesc[17] = "as opening all images in folder, viewing them in slide-show mode, a powerful image printing tool and so on.";
fDesc[18] = "in a snap. The program scans your entire computer searching for image files and then shows them as thumbnails or in their real size. It also allows you to email images from within the program as a thumbnail (120x90), Internet ready (500x375) or in the original size.";
fDesc[19] = "allow you to manage digital photos and create astonishing slide-shows. The different programs enable you to view, browse, merge, rename, convert and present your images very easily and fast.";
fDesc[20] = "view our JPEG/TGA/GIF/BITMAP images in three modes: one at a time, as a slideshow, or in a picture index. We can go forward and backwards to the next/previous image. It is possible to view the image properties, generate catalogs, encrypt/decrypt file, manage images, etc.";
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 = '...';
}
}