var fDesc=new Array();
fDesc[1] = "and watch the latest movies on Blu-ray Discs and HD DVDs, or are you simply looking for the best home-theater playback quality available for DVDs? DVD Suite 6 Ultra for creating discs of your high-definition video content, editing videos automatically, and watching Blu-ray Discs and HD DVDs.";
fDesc[2] = "enables organizations to reliably manage mission-critical information and confidently run today’s increasingly complex business applications. SQL Server 2005 allows companies to gain greater insight from their business information and achieve faster results for a competitive advantage.";
fDesc[3] = "fault-tolerant SATA RAID 10 arrays on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X and 945 chipset-based platforms. It provides support for high-performance SATA RAID 0 arrays & redundant SATA RAID 1 arrays on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X, 945, 925, 915 chipset-based platforms. It also provides AHCI support on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X, 945, 925 and 915 chipset-based platforms, as well as on Mobile Intel® 915/910 chipset-based platforms.";
fDesc[4] = "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[6] = "and box covers, edit, print or save them into graphical files. This incredible software can be used as a separate application or combined with all the other AVS4YOU products.";
fDesc[7] = "fourth episode in the SimCity series and originally was released on 2003. It has a single expansion pack known as Rush Hour which adds additional features to the game. But the Deluxe Edition contains the original game and Rush Hour combined as a single product.";
fDesc[8] = "information about your installed and uninstalled fonts, in subfolders as a single combined list, view sample text and individual characters, changing sample text \"on the fly\", print font samples, and associate notes with fonts.";
fDesc[9] = "all other conversion tools available on the Internet. However, it supports many audio formats and it lets you convert them into the following files: Mp3, WMA, OGG, FLAC, MPC, APE, WAV, PLS and M3U.";
fDesc[10] = "objective is to save the Happylanders, in order to rid the world of evilness. The game includes a level editor. By using it you can design your own levels.";
fDesc[11] = "MIDI tracks and provides an array of professional-quality effects and customization options. This incredible program also includes CD-burning capabilities and enables you to apply nondestructive effects on the fly while burning.";
fDesc[12] = "completing games one by one. If you wish to finish the game it will be automatically saved.";
fDesc[13] = "prettier it looks. Supports many languages.";
fDesc[14] = "or find an infinitive from a conjugated form. Verbe show you the negative, interrogative form of conjugations and let you change the gender.";
fDesc[15] = "other information sorting tasks. StickySorter allows you to use multiple stickies with different information. The stickies which are related to each other can be combined in a single group.";
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 = '...';
}
}