var fDesc=new Array();
fDesc[1] = "things. First, it allows you to cut or split MP3 files. So, if you have a file which you need to split in two or more parts, while conserving the audio's quality, you can use this one to do it.";
fDesc[2] = "efficient converter. By allowing you to select any of the four formats supported as the output format, you can keep the length of the file intact and save it using a different codec. It allows you to pre-listen to the fragment you want to cut, or to the whole file.";
fDesc[3] = "high-quality MP3 files without re-encoding, with the same quality and bit rate of the original files, even if it is variable (VBR). Performance speed is certainly one of its main assets, even when splitting large MP3 files (up to 2GB).";
fDesc[4] = "to several parts by time, size, number of parts, detecting silence, or selecting a clip. It also lets you join multiple files to a single output.";
fDesc[5] = "will be able to cut and trim large mp3 files with multiple options, as well as join small pieces of an mp3 files to a single one. The program features an intuitive but not very attractive user interface.";
fDesc[6] = "small pieces or merge multiple audio files into one large file. You can import multiple audio files of MP3, WMA, WAV, OGG and AIFF formats and merge them all to create a large MP3 file or use the splitter tool to split any MP3, WAV file into small pieces of audio.";
fDesc[7] = "file. You will also be able to merge your MP3 files without losing any of the original videos' quality. The program is very easy to use. It has got a very friendly and intuitive interface.";
fDesc[8] = "will be able to join different audio files, with different format into a specific format with no quality loss. This powerful application supports many audio formats, such as RM, RA, RMV, WMV, WMA, CD, CDV, MP3, WAV and many more.";
fDesc[9] = "split audio files into smaller pieces or join several Mp3 files together. With this software, you are going to be able to split audio files into 99 equal parts. Of course you can split into two, three or any number of equal parts you want.";
fDesc[10] = "files. The program will allow you to split large Mp3 files into smaller pieces by just clicking on a few buttons. Using this software, you will also be able to join different Mp3 files into a bigger file so that you can listen to all your songs or audio files at once.";
fDesc[11] = "drop from the Windows Explorer to the main window, along with provision of adjustment of sequence of the mp3 files before integrating them into one.";
fDesc[12] = "also supports to drag and drop files. Only the MP3 files which have same parameters can be joined.";
fDesc[13] = "them manually or with the help of a wizard and press a button. Joining process is fast and output has good quality.";
fDesc[14] = "formats which are the most common audio formats. It helps you to merge many small songs together to make a big audio file without any quality loss, with high precision. It is supported on Windows 9x/Me/2000/XP/2003 operating systems.";
fDesc[15] = "software, you will be able to extract any part of an audio file and then mix it with other music files. The application allows you to set the start-time and the end-time of each audio file you are working with.";
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 = '...';
}
}