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] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[3] = "Windows API for timing by directly using the RDTSC (Read Time Stamp Counter) instruction. Applications that rely on RDTSC do not benefit from the logic in the operating system to properly account for the affect of...";
fDesc[5] = "You´ll have to investigate seven potential suspects, motives, weapons, victims, pieces of evidence and body disposal methods to solve the crime, eliminating possibilities from the gameboard using the clues in your notebook.";
fDesc[6] = "filled game which one could play for hours and hours without getting bored.Its also a NO AGE LIMIT game so every one from a kid to grand pa can enjoy it.";
fDesc[7] = "made for you with a magical background. You are armed with a deck of cards that needs to be restored so that the fantasy-land restores back its zeal and life.";
fDesc[8] = "suitable for all ages, through configuration of the number of games, difficulty levels and parametrization. The program can be installed in 8 different languages.";
fDesc[9] = "with your friends. Plain intuitive rules also help to relax. Play and enjoy yourself!";
fDesc[10] = "number grid with reasoning and patience (no math required). There is only one rule: Fill in the grid so that every row, column and 3x3 box contains all digits 1-9 only once.";
fDesc[11] = "simple; you only have to turn off all the lights on the board by clicking on each piece. The game is simple, small, but entertaining enough to keep you busy for a while. Besides, it can very addictive. Definitely a good pastime.";
fDesc[12] = "logic and puzzle games that will test your skills.You will spend hours of entertainment, you will never get tired of playing a single game again. You have 101 game to choose from!";
fDesc[13] = "interface. The problems must be solved by using any of the four arithmetical operations of addition, subtraction, multiplication, and division. Every time the student successfully completes a series of ten exercises, he/she can go up to the next level.";
fDesc[14] = "sound and music. Graphics are highly detailed with full color with the easy to learn concept. Jewel logic provides environment for the novice maturing to an expert by unlimited levels of challenges.";
fDesc[15] = "Sequencing and professional scoring into a leading edge music composition and production system. It allows users to design their own interface combination to support their individual working style.The Platinum version provides the entire combined feature set of the rest of the Logic series including all of the original Extensions for integrated simultaneous support of multiple, exclusive third party hardware. With a maximum of 96 audio tracks, numerous real-time DSP effects, an internal bus system and a complete DTP quality Scoring section, it is clear that Platinum means professional. Logic Audio Platinum is available for Windows 95 and MacOS - just like all the programs in the Logic Series.";
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 = '...';
}
}