var fDesc=new Array();
fDesc[1] = "necessary adjustment to the document and preview it before printing (up to 20 copies without the need of any other application).";
fDesc[2] = "known to miss many features that all other devices have. One of those is the ability to use the device as a Mass Storage unit. You can fix that with DiskAid.";
fDesc[3] = "customizations to suit your needs, including timed capture, capture Hotkey, Saving to File directly or to Clipboard, capturing a region,active window or full screen it has all the basic required features.";
fDesc[4] = "all basic tasks like move, copy, eliminate files, execute programs, view images, etc., but there are other many great features that, I'm sure, they will make from Directory Opus an essential tool for your Windows.";
fDesc[5] = "encryption (256-bit), dual encryption that includes both 'Blowfish' and 'Rijndael' with 256 bits each. The application can be downloaded as a desktop program, PC resident, or as a portable application for being used with USB sticks.";
fDesc[6] = "windows explorer file copy/move and adds many features for a better control and manage of your copies/moves. It has a GUI easy and friendly to the user. Its installation process is easy to perform. SuperCopier runs on Windows 95/98/Millenium/NT4/20 00/XP/2003Server platforms.";
fDesc[7] = "insert your passwords anywhere. Some web browser plug-ins do that. Password Keeper will only store them in a secure location from where you can copy them into the clipboard and past them anywhere.";
fDesc[8] = "in the future. If the video file is stored in your browser's cache, this utility can help you to extract the video file from the cache and save it for watching it in the future. It automatically scans the entire cache of Internet Explorer and Mozilla-based Web browsers (Including Firefox) and finds all video files that are currently stored in it. It allows you to easily copy the cached video files into another folder for playing/watching them in the future. If you have a movie player that is configured to play flv files, it also allows you to play the video directly from your browser's cache.";
fDesc[9] = "Ycopy skips it continues with the other files. A printable report is generated of files that were unable to be copied.";
fDesc[10] = "email database. This incredible program can save emails, address book, message rules, settings, mail and news accounts, blocked senders lists and signatures to a single, compact, compressed backup file that can be easily restored when necessary.";
fDesc[11] = "OS X machines, but slightly less powerful, and not nearly as good-looking. The Dock is the way to go for starting applications and switching between them in Mac. The user wants to recreate this. The Dock is by default filled with applications on your computer.";
fDesc[12] = "computer quickly and easily. This incredible program enables you to rip to wav so you can burn a copy of your favorite CD for your car, or rip to MP3 to listen on your computer and share it with your family and friends.";
fDesc[13] = "entries from the Windows registry and save those into a separate registry file (with an extension .REG). The saving of registry entries in this .REG extension is done so that it can be easily exported into any other registry.";
fDesc[14] = "well. When you install the application to your Windows computer, it will create a sort of remote access server on your computer. Then, it will broadcast your computer with a service that you can access from the iPhone's Safari browser.";
fDesc[15] = "school and college math students. This Junior version doesn't permit you to print graphs, but you can always export the graph to a BMP image file";
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 = '...';
}
}