var fDesc=new Array();
fDesc[1] = "utilities as Word 2007, Access 2007, PowerPoint 2007 and others. It allows users to input data into cells included in a grid made of rows and columns.";
fDesc[2] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
fDesc[3] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[4] = "home use. This program protects you from viruses and spyware and includes several modules like Instant Messaging, Internet Mail, Network Shield, Outlook Exchange, P2P Shield, Standard Shield and Web Shield.";
fDesc[5] = "source codecs like Ogg vorbis. With the built-in utilities like library manager, music ripping and burning to CDs and its great playback quality, it is indeed a great music player to have.";
fDesc[6] = "uses industry standard IP protocols to allow devices to automatically discover each other without the need to enter IP addresses or configure DNS servers.";
fDesc[7] = "photos with friends and family is as easy as pressing a button!";
fDesc[8] = "them to embed videos in web spaces, blogs, or sites. This tool simplifies the experience of video managing with a modest usage of system resources and good quality, which makes it a good choice for online videos.";
fDesc[9] = "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[10] = "user of compact cameras, ACDSee taking a more professional version for the advanced user. For the price it has is an interesting option for the purchase by the amateur .";
fDesc[11] = "other applications of this kind. With this tool you can write images on a disc, mount on a virtual drive, create an image from a disc or convert it to different formats, create bootable CDs/DVDs, etc.";
fDesc[12] = "Share your movies all over, on iPods, YouTube, or the new HD home theater systems, with full support for discs as AVCHD, Blu-ray and HD DVD.";
fDesc[13] = "WinOptimizer can clean your internet and PC history and clean all the junk files. You can clean your windows registry to get rid of unused registry entries and save your system from registry corruption and errors or you may like to make your private data password protected.";
fDesc[14] = "secure distribution and collaboration. With Acrobat Standard you can: * Combine and arrange documents * Manage shared reviews * Use familiar review and commenting tools * Save in Microsoft Word * Capture web pages * Sign documents digitally * Etc.";
fDesc[15] = "that it contains libraries that provide functionality to deploy fault-tolerant, distributed, multi-tier Java software, based mostly on modular components running on an application server.";
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 = '...';
}
}