var fDesc=new Array();
fDesc[1] = "Download Manager will let you have full control over your downloads, accelerating download speed to squeeze your bandwidth.";
fDesc[2] = "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[3] = "archives or zip files, what is this? Well, zip files are archives used for storing and distributing files and these can contain 1 or more files. WinZip has a feature called Wizard, which will take you through the entire program, helping you to compress wisely.";
fDesc[4] = "format over P2P networks. It can use HTTP or FTP Downloads, build torrents from a file on your computer in order to share it with others, download video, mp3 of flash files from any web page (like YouTube). You can even download an eDonkey plugin.";
fDesc[5] = "advanced users. The program features a simple and intuitive Explorer style interface that shows the local and remote folders in a clear way and allows you to customize them the way your want.";
fDesc[6] = "multi-channel technology and mirror searching for increasing the speed of downloads. DAP can download Youtube videos or other online videos, and it also allows a user to preview the video content while downloading it.";
fDesc[7] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[8] = "to apply skins and includes the XP enhancement tool to optimize downloads.Flashget is more than a download tool. It also acts as a bit torrent client with batch file download facility.";
fDesc[9] = "viruses, Trojans, hackers, or any malicious software that could harm your system. The application is fully customizable and provides two modes to choose from according to you needs and knowledge";
fDesc[10] = "such as keeping your contacts database, your task list and appointments synchronized. MyPhoneExplorer has several tabs which are: Contacts, calls, organizer, messages, files and other. In each of these you can manage different parts of you mobile phone.";
fDesc[11] = "and developers worldwide. Ubuntu comes with a series of already installed applications that are categorized by functions like: Accessories, Games, Graphics Internet, Office and Sound & Video You can run Ubuntu as a desktop operating system or configure it as a powerful and secure server.";
fDesc[12] = "ease. It is easy to install and use. Mainly designed to create a test environment but powerful enough to handle the real thing.";
fDesc[13] = "remote computer is a linux/unix machine. It offers file manager functionality. It uses Secure Shell (SSH) and supports legacy SCP protocol. The graphical user interface is more like windows explorer, with drag&drop capabilities and icons.";
fDesc[14] = "and reducing size for audio/video files, converting for audio/video playback devices, extracting audio tracks from video files, ripping audio/video discs, reparing corrupted or partial downloaded video files, and so on.";
fDesc[15] = "features of a simple text editor as well as many more useful features which are helpful to web developers, web designers and Programmers as well.";
fDesc[16] = "hex editor, CP conversion, text differences, templates, macros, spellcheck option, auto-completion, Code Explorer and much more.";
fDesc[17] = "remote images, and watch how CuteFTP Pro accelerates your file transfers, this professional version comes with an advanced security protection to ensure the easy transfer of your top secret files!";
fDesc[18] = "files, text files as well as MP3 audio files. Using simple commands and tools you can compare and differentiate between two files. You can merge the changes, synchronize your files and create reports for the changes made.";
fDesc[19] = "option for you. This small and simple utility is actually a powerful tool that will let you to capture anything on your screen. You will be able to choose if you want to capture a specific region or full screen.";
fDesc[20] = "compression and encryption algorithm that saves more information in less space, and Google desktop integration.";
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 = '...';
}
}