var fDesc=new Array();
fDesc[1] = "your favorite music files stored on your PC? Then AIMP is a new music player you should download and test it. AIMP is specially popular because it's a simple application that uses low resources, but it has a powerful equalizer where you will notice better quality improvements of your audio files";
fDesc[2] = "play DVD also. One feature to be noted is that there is a built-in converter that can convert many media files to AVI or DIVX. \"AVI Doctor\" in the \"Setup\" page can repair AVI files that have been damaged probably by a P2P download that hasn't been 100% completed.";
fDesc[3] = "three separate entries into the program's folder. These are the entries for each of the three modules included in the program: Music Converter, Batch Converter and CD Ripper. Every module has its own interface";
fDesc[4] = "favorite audio files. It is very easy to use with very comprehensive functions for the management and playback of audio files.";
fDesc[5] = "processes. FLAC developers have selected this interface as an integral part of their distribution files. Its simplicity of use, together with its multi-platform approach, made FLAC Frontend to become the default interface for FLAC, the most widely used codec for a loss-free audio compression.";
fDesc[6] = "complete audio converters on the internet. It works with lots of audio formats such as WAV, MP3, WMA, OGG, AAC, FLAC, MP2, MP4 and ACC.";
fDesc[7] = "clicks. The program supports all the popular audio formats including WAV, MP3, MMF, AMR, QCP and MP3. The best feature of the converter is the integration into Windows right-click menu.";
fDesc[8] = "to rip your CDs to WAV, OGG, FLAC and MP3, to convert your audio files from any of the supported formats to a different one, to normalize their volume, to edit your audio tracks information, and even to repair broken audio files.";
fDesc[9] = "files. You can change the defaulted audio settings for both MP3 and WMA files, allowing you to decide on the quality and the size of the resulting files. Magic FLAC to MP3 Converter can also load your files directly from any CUE file.";
fDesc[10] = "popular formats including MP3, WMA, OGG, WAV, APE, and FLAC. It lets you configure output settings like bit rate, sample rate, channels, etc. process batches, edit ID3 tags, and more.";
fDesc[11] = "popular audio formats including MP3, APE and FLAC audios. Easy user interface and fast conversion make this program a useful audio converter. You can add multiple audio files and folders to the batch list making the conversion even simpler.";
fDesc[12] = "files. Some of the audio files you will be able to convert to are MP3, OGG, WMA, M4A, WAV, AMR, WB, AAC. MP2, AC3, AIFF and MMF. This software has got a very friendly and intuitive interface that will guide all users on how to get their files converted from one into another.";
fDesc[13] = "able to work directly with your FLAC audio files, and create specific CUE files to be used with both the individual tracks and the image FLAC files created by AutoFLAC – you will not need to convert them back into WAV before burning them to disc.";
fDesc[14] = "as input file, and converts to MP3, WAV, OGG, AMR, AWB, AAC, MP4, M4A, and M4B files. It also supports batch conversion.";
fDesc[15] = "in your favourite MP3 player without using different applications to decode and re-encode your audio files. It supports CUE sheets for perfect track cutting of image files. The MP3 output is fully customizable, allowing for both constant and variable bit rates.";
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 = '...';
}
}