var fDesc=new Array();
fDesc[1] = ", 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[2] = "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[3] = "viewer supports most SVG elements, as well as CSS properties and DOM elements. Additionally, the ActiveX control has been signed so you don't have problems with the ActiveX security warning introduced with Windows XP Security Pack 2.";
fDesc[4] = "create professional-looking reports by adding dynamic graphics and animated charts. Besides, you can choose different formats for your report such as a bar chart, pie chart or cross-tab summary tables.";
fDesc[5] = "MP3 and MP4 devices. It includes AMV Video Convert Tool, AMV Player, Media Manager, MP3 Player Disk Tool and MP3 Player Upgrade Tool.";
fDesc[6] = ", 2003, 2002, or 2000. You may copy text or graphic into another program, but you will only be able to open the document for editing if you have Microsoft Word installed.";
fDesc[7] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
fDesc[8] = "It takes you to the wonderful world of Egyptian pyramids, to search for uncovered priceless treasures. In spite of being a classic brick-breaking game, it turns out to be not repetitive or too easy as other games of this type may be.";
fDesc[9] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[10] = "back music and movie files. After installation you will be able to play 99.9% of files on the internet, along with XCD's, VCD's, SVCD's and DVD's.";
fDesc[11] = "applications. It also contains all the elements that the end user requires to execute those .Net applications. Mostly those elements are libraries that this framework uses to present any .Net application.";
fDesc[12] = "font in to the document. It is also necessary when the author does embed the font, but the reader of the document wishes to interact in some way with its content – e.g. collaborating, commenting or filling out forms.";
fDesc[13] = "changes in the climate, which affect your Sims dramatically. The Four Seasons are included in the game: Spring, Summer, Autumn and Winter. Each station and its respective climatology can affect radically the needs, aspirations, desires and fears of your Sims.";
fDesc[14] = "Windows Vista Aero Theme, Icons, Windows and Menus. Unfortunatelly version 1.1 is very basic and its more similar to longhorn than vista.";
fDesc[15] = "pursue employment in five new careers that include dance, entertainment, intelligence, oceanography and architecture. There are ten hobbies included in the expansion pack and several new elements.";
fDesc[16] = "not that perfect however highly useful for people who would like to change their operating system look from time to time";
fDesc[17] = "features is that you can improve its functionality through plug-ins. Winamp Essentials is a complete pack of very useful plug-ins for your player. Once you have tested them, I'm sure you will love them.";
fDesc[18] = "furniture and decoration from the popular Swedish furniture chain IKEA, mainly concentrating on living rooms, bedrooms and home offices. It is the second stuff pack to feature products of a real-world company.";
fDesc[19] = "kitchen and bathroom appliances and items. In all, over 103 items are included in the pack, along with a new house and a romantic loft. The pack is aimed at the dedicated Sims fans.";
fDesc[20] = "problems. A common issue with video is the lack of the correct codecs in your system, causing your player to fail when trying to reproduce certain files, this pack helps you by providing some of the most common codecs needed.";
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 = '...';
}
}