var fDesc=new Array();
fDesc[1] = "searching for a particular folder in a hurry. Having color-coded folders makes it much easier to find the needed one and you don’t waste your time at unnecessary search";
fDesc[2] = ", stop, rewind and forward any audio file using the play control. You can cut, copy or paste any part of the audio file or use the recording tool to record your own voice and mix it with music tracks.";
fDesc[3] = "micro phone, internet streaming audio, or music played by Winamp, Windows Media Player, Quick Time, Real";
fDesc[4] = ", documents, and temporary files, which have been lost after a computer crash, virus attack, drive reformatting, and so on. File Rescue Plus can also recover accidentally deleted files.";
fDesc[5] = "and music. The application not only lets you add a limitless number of items, but it also lets you browse them with a virtual shelf.";
fDesc[7] = ", Cut, Paste, Move, Delete, Fade In/Out , Cross fade, mix, amplify, normalize sound, add vibrato, invert, delay, flanger, phase, noise, chorus, reverse, use filters.";
fDesc[8] = "albums and share those albums with people around the globe. Perhaps the best feature about this application is how free you are to organize your photos any way you want.";
fDesc[9] = "the most popular formats, edit (add effects, filters, etc.), rip audio tracks from CDs, and burn MP3 or Audio CDs with the files in your computer.";
fDesc[10] = "professionals due to the high performance. This software has seven filters the 12 or 24 dB/oct low cut and high cut filters, low shelf and high shelf filters, low mid and middle and high mid peaking filters with adjustable frequency and Q factor over a wide range.";
fDesc[11] = "provides a comprehensive toolbox suite so we can fully customize the album to our preferences.There are many templates, clip arts, colors, background textures, and many more. We can easily access our album collection, add pages, insert images, export, insert file, video, audio, text, print, etc.";
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] = "low band. It is highly versatile Equalizer meant for upgrading the simplified ones. The package comes with features like five parametric design with selectable shelf for the lowest and the highest bad and with low and high cut filters.";
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] = "It is known as creating a “shelf\". Element Browser has very sleek look and is very user-friendly. The user interface has been created with great intuition.";
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 = '...';
}
}