var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = ", photo browser and Photo Story utility. The Digital Image provides a great functionality for organizing, viewing and storing photo archives. You can control your photos through a combination of digital-imaging tools with helpful wizards and professional-quality photo projects.";
fDesc[4] = "the web, paint with the mouse, etc. You can acquire digital photos from file on your computer, with the help of a scanner or a digital camera and at once start to work with them.";
fDesc[5] = "This software is a photo viewer that allows us to view our digital images on our computer screen. It features a rather simple user's interface with just a few instructions.";
fDesc[6] = "digital camera such as Canon EOS series. The program offers a thumbnail browser, slide show viewer and a full preview of the selected image.";
fDesc[7] = "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[8] = "viewers. One great feature of Cornice is that will let you to see the images contained in a zip folder. Definitely, if you are bored of the same image viewer that comes with Windows by default, now you have a new option, and the best, for free!";
fDesc[10] = "parameters as subtitles), as a slide show, and as thumbnails. We can edit the image in several ways, rotate, resize, enhance, paste, zoom, delete, organize, etc. It supports a wide range of image file types (including RAW images).";
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] = "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[13] = "create slide shows, screen savers and EXE slide show files using ImageBox that can run on any PC without any third party software. ImageBox supports JPEG, GIF, PNG, TIFF and BMP image formats.";
fDesc[14] = "has many features, such as photo viewing, red eye removal, enhancing colors, slide show, many graphics effects, batch conversion.";
fDesc[15] = "create albums from digital photos on your PC, save them on a floppy disk, and view them on a TV in the comfort of your living room. Kick back with the remote control and share your albums on the big screen ? they look great! With TV Photo Viewer, you can make your family the star of the show.";
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 = '...';
}
}