var fDesc=new Array();
fDesc[1] = "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[2] = "favorite audio files. It is very easy to use with very comprehensive functions for the management and playback of audio files.";
fDesc[3] = "administrators including security alerts and customized reports about hardware and software, network audit, change management and network monitoring. It also reports on a single PC.";
fDesc[4] = "1000s of artists. You will also be able to listen to music on your PC, mobile player or as ring tones on your mobile phone. With Radiotracker, you will have in your hands the gift of unlimited music all day, free and legal.";
fDesc[5] = "XML-based protocol that is designed to exchange structured and typed information on the Web. The purpose is to start up rich and automated Web services based on a shared and open Web infrastructure.";
fDesc[6] = "computer problems, without compromising your privacy. BigFix is a fast and reliable way to shield your computer from the late...";
fDesc[7] = "It is capable of launching up to ten simultaneous retrieval threads, filtering files on basis of type as well as size, searching for keywords and lots more. Teleport can mimic browsers more effectively on account of Cookie support.";
fDesc[8] = "very useful for personal, web, experimental and even professional radio operations. It is a very robust, stable, versatile and reliable software with many features.";
fDesc[9] = "Automated, All-In-One PC Care Service with anti-spyware, privacy protection, performance tune-ups, and system clean.";
fDesc[10] = "as registry problems, slow performance caused by drivers, hard drive fragmentation, memory optimization and others Windows' tweaks.";
fDesc[11] = "and notebook PCs, as well as Microsoft Ultra-Mobile PCs. Compatible with Windows Vista as well as XP and 2000.";
fDesc[12] = "this kind that I have seen recently, RoboTask actually includes a large list of common tasks that you can add by simple double clicking. You don't have to use any coding or extensive commands.";
fDesc[13] = "After download iMacros, when we open can see a panel in the left side of the program and in the windows we can see a tutorial for learn how to use the program.";
fDesc[14] = "automated. Using Setup Studio and silent installations saves a significant amount of your time and effort.";
fDesc[15] = "process, including integration with version control system, compilers, .Net tools and built in CD/DVD burning.";
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 = '...';
}
}