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] = ", fast and quite simple to use software, what makes of it the perfect application for everyone. It's freeware, but the license is free only but non-commercial use.";
fDesc[4] = "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[5] = ", 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[6] = "pages into single executable files, and ultimately into working stand-alone Windows applications, which literally resemble a normal web browser.";
fDesc[7] = "effects, then Atani can be a good option to choose. With this powerful application you will be able to use your favorite pictures to create a video (AVI) or animation (GIF) file easily in just a couple of steps; and, thanks to the wizard included, in a pretty fast way.";
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] = "with your digital camera. 2. a 'copy-to' option, to quickly copy a file to another folder. 3. slide show option.";
fDesc[10] = "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[11] = "interface and is simple to use. Despite its simplicity it offers many advanced functions, such as thumbnails, exporting to HTML & thumbsheets";
fDesc[12] = "tested also are engineered to help you create modern interfaces without writing much line of source code.";
fDesc[13] = "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.";
fDesc[14] = "thoroughly designed and tested also are engineered to help you create modern interfaces without writing much line of source code.";
fDesc[15] = "tested also are engineered to help you create modern interfaces without writing much line of source code.";
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 = '...';
}
}