var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "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[3] = ", 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[4] = "installed in our computer or Pocket PC. Students, for example, can save their AutoCAD projects done at the university or college and view them at home in their PC later, without AutoCAD or Internet connection. We can edit, measure, calibrate, zoom, view layers, block attributes.";
fDesc[5] = "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[6] = "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[7] = "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[8] = ", easy and convenient. ActualDoc keeps track of the documents you are currently working on and helps you to find any of them";
fDesc[9] = "documents you are currently working with and helps you to find any of them with three clicks. Filtering options and documents viewer included.";
fDesc[10] = "browsing and without running an external picture viewer or multimedia player. Download ImageFox 2.0 today!";
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] = "file types along with its unrivaled speed, CompuPic provides more features than any other software in its clas";
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] = "viewer right from the Windows right click menu. You can even right click an mp3 or WAV file and hear it instantly!";
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 = '...';
}
}