var fDesc=new Array();
fDesc[1] = "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[2] = ", 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[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] = "in terms of graphics. It enabled users to see a thumbnail of the Windows by simply placing the pointer on top of the Window's button on the taskbar. This is more than a graphical tweak though.";
fDesc[5] = "screen, an application, an active window or even a particular area of the screen. You can perform the capture from the application interface itself or by using different combinations of keys. The program is also capable of adding a number of interesting effects.";
fDesc[6] = "Converting supports most of the formats you will ever need: GIF, JPEG, BMP, PNG, and more. The thumbnail option is particularly handy when you are in a file open dialog.";
fDesc[7] = "of the taskbar. Once installed, every time you put the mouse over an icon in the taskbar, Visual Tooltip will show you a mini window with the content of that program. You can build a dock that will allow you to easily cycle through the different programs by adding that windows to it.";
fDesc[8] = "than 40 image filters. Supports over 140+ image formats such as JPEG, BMP, PNG, GIF, ICON, PSD. Commandline support.";
fDesc[9] = "showed into the Windows Taskbar. Just place your mouse over a button, and most of times (not always) you will get a thumbnail of the application. Cool!";
fDesc[10] = "(but related) photographs. Once they are imported, the user can select and set many options to obtain the best panorama output file, such as lens distortions, zoom on each picture, barrel distortion correction, correction for different image brightness, etc.";
fDesc[11] = "enable you to do what this little jewel does, but there is an outstanding difference. JPEGCrops allows you to crop or resize pictures in batches. Yes, that is easily achieved with many other applications, but you can do it from a thumbnail view with JPEGCRops.";
fDesc[12] = "actual image. The utility automatically generates thumbnail icons for most popular image types including JPEG, PNG, GIF, and many others.";
fDesc[13] = "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[14] = "and galleries of various styles in a snap. The program features a nice and intuitive wizard-like user interface that enables you to easily go through the four steps of the process.";
fDesc[15] = "on the Web. You don't need to know anything about HTML and CSS - this easy-to-use tool will do everything for you.";
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 = '...';
}
}