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] = "files in over 400 file formats (GIF, BMP, PNG, JPG, JPEG, TIFF, PCX, ICO, IMG, PDF, PIC, PSD, RAW, RGB, TGA, and many more).";
fDesc[4] = "alternatives, then FastPictureViewer can be a good option. This program, as its name suggests, lets you view your images in a fast way, and in addition, it has a Vista style interface which makes that navigating through your photos can be a simple process.";
fDesc[5] = "pages into single executable files, and ultimately into working stand-alone Windows applications, which literally resemble a normal web browser.";
fDesc[6] = "efficient way, and as a result, you will avoid the annoying problem of having to use many programs to open different types of files. In addition, the program offers you a nice and easy-to-use interface.";
fDesc[7] = "allows you to browse, zoom, copy and move any thumbnail or image file. ST Thumbnails Explorer supports every thumbnail file like Adobe Illustrator v.7-11, CorelDRAW v.4-12, Macromedia FreeHand v.7-11, CorelXARA / Xara X etc. Folder tree and drag/drop feature enables the user to explore faster.";
fDesc[8] = "i-Fun Viewer is an image viewer which supports images with the following image formats extensions: JPEG/BMP/GIF/WMF/EMF/P NG/TIF/TIFF/PCX/TGA/DI B/RLE/PBM/PGM/PPM/JIF. When opening the program, we can see our entire directory; select any folder or file and all the images found in them will be automatically displayed as thumbnails, small thumbs, or filename.";
fDesc[9] = "we can find a Menu Bar, one toolbar, one browser where we can see our folders a thumbnails panel and one window where we can see our projects.";
fDesc[10] = "with your digital camera. 2. a 'copy-to' option, to quickly copy a file to another folder. 3. slide show option.";
fDesc[11] = "documents, text and web files with ease. The wizard tool starts with a welcome screen followed by configuration and other options to make it easier to view and manage all your common images, documents, sound and video files in all the common formats.";
fDesc[12] = ", easy and convenient. ActualDoc keeps track of the documents you are currently working on and helps you to find any of them";
fDesc[13] = "documents you are currently working with and helps you to find any of them with three clicks. Filtering options and documents viewer included.";
fDesc[14] = "interface and is simple to use. Despite its simplicity it offers many advanced functions, such as thumbnails, exporting to HTML & thumbsheets";
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 = '...';
}
}