var fDesc=new Array();
fDesc[1] = "provides the following features: power management scheme and battery resource information and health. This utility also detects unsupported power-adapter/dock/bat tery scenarios and displays warning messages.";
fDesc[2] = "songs and albums with excellent audio quality, and all for free, as it is funded on advertising. In Spotify it is possible to listen to all sorts of music: from a rare song one might not expect to find, to the latest albums by popular bands and artists.";
fDesc[3] = "Aerosmith? The group of Boston with 35 years of history behind them has introduced the second significant foray into the PC Gaming Universe.";
fDesc[4] = "they can control limitless audio frequency bands with many options. Users can create unique sounds by chaining the effects of morphing, panning, and delay.";
fDesc[5] = "band resistors.";
fDesc[6] = "Jupiter, of course. You will be able to see the planet during different times of its day, which is longer than ours. This planet is really huge compared to the Earth. Just looking at it and being nearby, will fill you with awe at the sight of the Giant.";
fDesc[7] = "filter and customizable shape. Included in the software are 3 filters. There is a low shelf filter, a high shelf filter and a boost/cut peak filter. Also included is its wide range gain (+/- 40dB per Band) and bandwith (.01 to 5 Octave) which makes it very versatile to create any filter shape.";
fDesc[8] = "usability and high-quality output makes it the ideal solution for professional and novice users alike, including studio musicians, composers, music educators, ensembles, bands and choirs.";
fDesc[9] = "colors into the boxes provided. Or, if you need to color code a resistor, you can input your values and the program will provide you with the correct color code.";
fDesc[10] = "How is this possible you may be asking? The data that you have searched for is retrieved by freedb.org. This is one of the World's largest musical CDs databases available.";
fDesc[11] = "Media Player and iTunes. You will then be able to know bands and themes that people with similar music tastes like, but you haven“t heard of.";
fDesc[12] = "boost or cut at any of 15 bands centered around ISO 2/3 octave frequencies from 20Hz to 20kHz. It includes many equalizer presets designed to enhance different types of music and audio.";
fDesc[13] = "applications that support the DirectX plug-in architecture.";
fDesc[14] = "one of the bands has a ground relative resolution of 15 meters, or 50 foot. Once in the browse mode, you can click on the image to recenter the view, and use the zoom control at the top left of the page to control the detail level.";
fDesc[15] = "extensions including context menu, property sheet, infotip, thumbnail, icon, overlay icon and drag-drop extensions as well as taskbar bands .";
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 = '...';
}
}