var fDesc=new Array();
fDesc[1] = "for ZIP/ARJ/LHA/RAR/UC2/TA R/GZ/CAB/ACE. Command line, full text search also in packed files, button bar,FTP client.";
fDesc[2] = "configurable popup calendar that opens when the systray clock is clicked. No more double clicking on the clock just to view the calendar in the Date and Time Properties dialog box.";
fDesc[3] = "files (executables, libraries, custom controls, data files e.t.c.) and extracts multimedia files. Extract files stored in EXECUTABLES, LIBRARIES, MICROSOFT® OFFICE FILES, DATABASES, RAW or BINARY FILES (like exe, dll, ocx, doc, ppt, xls, pdf, mdb...) .";
fDesc[4] = "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[5] = "users to easily reorder, duplicate, or append frames to animated cursors. Images can be modified by drawing tools and filters.";
fDesc[6] = "create cursors and supports animated ANI cursors. It has a support for alpha channel and can created animated GIF. Toolbar images can also be created using this software.";
fDesc[7] = "user selectable cursor trails which instantly interact with your mouse cursor producing exciting effects.";
fDesc[8] = "not all this program does. Using this application you will be able to edit your image files with a lot of effects such as mirror, various filters, rotate, flip, watermarks, color enhancements, margins, crop and more.";
fDesc[9] = "seconds. The program does not have a user interface per se, so to change your cursors you have to go to the folder that contains them (generally C:\WINDOWS\Cursors) and just right-click on any of them and select the preferred item from the context menu.";
fDesc[10] = "formats. Creates icon from screen capture. Supports any icon size 16x16, 24x24, 32x32, 48x48, 64x64, 72x72, 96x96, 128x128.";
fDesc[11] = "you view the graphics on its main window and to print and edit them with many useful tools. The program supports working with many files at the same time.";
fDesc[12] = "captures by editing the captured images and also adding descriptions using text balloons, arrows and other objects.";
fDesc[13] = "Tordex Wheel, Windows rolls the window under the mouse cursor, without having to activate them";
fDesc[14] = "cameras.";
fDesc[15] = ", VST, PIX, PXM, PPM, PGM, ICO, CUR. Output formats: JPG, TIF, PCX, PNG, BMP, TGA, PXM, PPM, PGM, PBM.";
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 = '...';
}
}