var fDesc=new Array();
fDesc[1] = "supports mpeg2 (that is, Quick time is now compatible with .mpg, .mpeg, .vob, .vro, .m2v, .m2a, .m2s). It is also compatible with a variety of audio formats like AIFF, WAV, MOV, MP4 (AAC only), CAF and AAC/ADTS. QuickTime also opens images in jpeg format and other image formats.";
fDesc[2] = "photos with friends and family is as easy as pressing a button!";
fDesc[3] = "keyboards and most recently laptops come with multimedia buttons and what are called quick launch buttons. HP Quick Launch Buttons is Hewlett Packard's software solution to enable and control the functions of the buttons included in their laptops and desktops.";
fDesc[4] = "Live. Besides providing protection to your Pc from threats, it is packed with a number of additional features. It also helps in improving your PC’s performance by removing the junk matters from the system’s hard disk.";
fDesc[5] = "previewing, and adding comments. Create thumbnails and generate fully customisable HTML index pages ready to be uploaded to your website. Also it supports a wide variety of meta data standads and some movie formats.";
fDesc[6] = "popular because it has faster speeds when downloading compared to other p2p programs that use the same network. Also its community has grown a lot, and this is why users can find a lot of music and videos to download.";
fDesc[7] = "everything that you need to keep your PC running like new, without any problems or crashes. A real time virus scanner keeps an eye on the processes running in your system and online. Most of the problems and viruses are stopped before they infect your PC.";
fDesc[8] = "program is uninstalled, this is not deleted completely from your hard disk. There is where Uninstall Tool can help you to literally uninstall and delete all traces of the program you want to get rid of.";
fDesc[9] = "quick and straight access to the new Crunchgames center of Oberon Media. It includes all games organized into categories, with quick links to the most popular ones.";
fDesc[10] = "Anti-spam, Firewall protection and online threats protection using the all new DNA scan feature. You can use the schedule scan and native boot scan to heal viruses that works in your system shell.";
fDesc[11] = "allows you to easily assign quick launching of any program by the touch of a button or by selecting from the list.";
fDesc[12] = "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[13] = "This software teaches us how to type without looking at the keyboard. It features three levels, beginner, medium and advanced, so we can start learning from zero or just training our fingers for a faster typing.";
fDesc[14] = "tweak and optimize Windows XP very easily. The interface of this application is very intiutive and very little user intervention is required. The optimization is done is within seconds. It increases the overall performance of your Windows XP system.";
fDesc[15] = "groups for your shortcuts with the possibility of adding more links without using additional taskbar space. The application is really easy to use and the only thing you have to do to add, remove or rearrange shortcuts is drag and drop or right-click shortcut.";
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 = '...';
}
}