var fDesc=new Array();
fDesc[1] = "Real player is a free multimedia player,supports almost every audio and video file formats like,MP3,MPEG,MP4,CD,D VD VIDEOS and the QUICK TIME videos.Real player enables the user to buy and download music on more than 100 portable devices like Apple Ipod or an MP3 player.";
fDesc[2] = "GoldWave, a very advanced program that will help you perform from simple to complex audio projects. With this application you will be able to play, edit, mix, restore and apply many audio effects to your files that will let you get professional results.";
fDesc[3] = "keyboard as accurately as possible. The game is pretty much a port of games like Guitar Hero and Rock Band, but for the PC, Mac and Linux. That is one of its greatest features: that no matter what computer you have, you can play it.";
fDesc[4] = "this program will band together to make one of the largest supercomputers in the world. This supercomputer will be used to simulate problems millions of times more challenging than previously achieved.";
fDesc[5] = "the babysitter of baby monsters. Some of the actions you have to take care of are: placing babies in a crib for a nap, putting hungry babies in a high chair to be fed, after a fight, put both babies band-aids on, among others.";
fDesc[6] = "authentication technique or FAT which helps in double sampled processing. It also features a dis-engageable brick wall limiting along with a semi-automated release mode.";
fDesc[7] = "Big Fish Games. In this tycoon-like game you are going to manage a local rock band, and the main goal is to achieve fame and make your band's songs go up in music charts.";
fDesc[8] = "These features make it an ideal tool to be used in live shows. The software has two compressors with VCA and the OPTP models and it uses two four band parametric equalizers with five different filter types.";
fDesc[9] = "circuit with component values and displaying the frequency response. It has a filter wizard to design a filter step by step by selecting: type of filter, frequency (Hz), attenuation (dB) and approximation. Also you can design analog to digital converters.";
fDesc[11] = "and can load 16 and 24 bit samples. It has 8 stereo channels with Low Pass, High Pass, Band Pass and Notch filter modes. The user could load an open hihat into channel 13+14.";
fDesc[12] = "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[13] = "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[14] = "package of tools that you can use to improve your tracks and get them to be the best they can possibly be. The program has many features that enable you to perform many actions and the possibilities are almost endless.";
fDesc[15] = "wide-coverage receiver, 2-meter VHF band and 70-centimeter UHF band. This handheld transceiver features 1000 memories with alpha-tags and if you own one, you might find FT60 Commander very useful for managing your memories.";
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 = '...';
}
}