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] = ", find, and share your notes and information more efficiently and effectively. The program features powerful search capabilities that help you locate information quickly and easy-to-use shared notebooks that allows you to manage information overload, whether online or offline.";
fDesc[3] = "photos with friends and family is as easy as pressing a button!";
fDesc[4] = "resolutions up to 1080p and compresses digital video 5 to 10 times more than MPEG-2/DVD format. It also has function of reducing grain and low-light noise (common with DV cameras) without significantly degrading the video with the automated noise reduction feature.";
fDesc[5] = "sites like Youtube, Dailymotion, Metacafe, Break, My space, veoh, CNET TV, Tudou, ESPN, Heavy, Photobucket, CNN, EA, Reuters, Live Video and Facebook.";
fDesc[6] = "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[7] = "speeding resolution of customer-reported problems. PC-Doctor 5 for Windows provides support technicians with powerful hardware diagnostics and system information tools to speed call resolution and increase first-call resolution rates.";
fDesc[8] = "removing the ones that are not necessary making your system perform better. It has a very simplistic user interface where you can choose which applications to optimize as well as the time intervals for optimizations to happen. Minimem works quietly on the background.";
fDesc[9] = "excellent option to try. This small yet powerful application has many advanced editing features that will make a big difference next time you open and edit a text file.";
fDesc[10] = "features. Some of the common tools includes automatic brightness, contrast, gamma and saturation adjustment; red-eye removal, resize, rotate, crop and warping of images; a great number of filters such as smooth, sharpen, edge detection, etc.; among others.";
fDesc[11] = "colored points. In the world of photo such artifacts are called noise. Because of the noise great frames can be damaged. Topaz Denoise is a great plug-in for Adobe Photoshop that was developed for reducing noise level of photos.";
fDesc[12] = "operating systems in conjunction. By using this software the user can easily run multiple applications, each one being optimized for a separate operating system, simultaneously thereby reducing dependency of the work on specific hardware and OS configurations.";
fDesc[13] = "programs by as much as 70%.(ASPack's compression ratio improves upon theindustry-standard zip file format by as much as10-20%.) ASPack makes Win...";
fDesc[14] = ", Invert, reducing the size of images for e-mail, and easily browsing through large collections of images (just press the space bar and backspace key).";
fDesc[15] = ", maintaning the original file format. It also compresses StarOffice and OpenOffice presentations and documents saved in a Microsoft Office format. It includes a wizard to search PowerPoint and Word documents within the user PC or in the network it is on.";
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 = '...';
}
}