var fDesc=new Array();
fDesc[1] = "servers. It can be easily used in a script, a batch file or the Task Scheduler to automate resources uploads.";
fDesc[2] = "most common compressed archives including ZIP, RAR and 7z. QuickZip is a FREE alternative to WinZip, WinRAR and PowerArchiver. Although its interface is not the paradigm of beauty, QuickZip is powerful, full featured and has lots of tools like Search in Archive, Archive Finder, etc.";
fDesc[3] = "will ask you to wait some minutes while it builds the search cache, by examining the content of your disks. You can save the searches and the listings of results in a file, for further reference.";
fDesc[4] = ", the background will turn from lead to gold, and every rune will disappear, awarding you points. You can then place more runes over those empty spaces.";
fDesc[5] = "can be completely customized by the users. As the client can be customized it becomes portable enough after customization. Key authentication systems like DSA and RSA are fully supported by this client.";
fDesc[6] = "find and remove duplicate email messages in Outlook. On startup, you can define if you want to look for duplicate files or messages. Then, you will be able to select the built -in search template you want to use or define your own search template.";
fDesc[7] = "AC3, AMR, MPC, ADPCM, A/U-LAW, DSP, GSM, and VOX. You can adjust different conversion settings to reach the sound quality that you wish.";
fDesc[8] = "Internet. Its interface is web-based, very colorful and understandable. You can see the event list (program operation) and the Internet activity, apply time restrictions, use URL wildcards, grant full access for a few minutes, and a lot more.";
fDesc[9] = ", car??.jpg, *nirvana*.mp3 etc.) on your computer or local network.";
fDesc[10] = ", ... and folders. It offers these catalogs offline for browsing and search operations with wildcards.";
fDesc[11] = "Replace, delete, insert .. operations. Search in headers\footers, hyperlinks, text frames in MSWord documents.";
fDesc[12] = "XMP, regular expressions, file rename using wildcards, MP3/Ogg vorbis/MPC id3 tagging and MANY more.";
fDesc[13] = "be made by the 'Search and Replace' options filtered by wildcards and Regular Expressions. You simply have to specify a search pattern, optionally using a regular expression, and a replacement format, then let it run and it will do the rest itself.";
fDesc[14] = "way. With this program you can rename audio files, video files, documents, image files and other types. The good thing about the program is that it is very easy to use and it lets you navigate through your computer to find the files and rename them very fast.";
fDesc[15] = "wildcards and changing attributes of files in subdirectories recursively.";
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 = '...';
}
}