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] = "has a clear and intuitive interface to divide the audio file you want, whether specific parts of the track, intervals of the same length and even the silences. It supports Drag & Drop, and batch mode to cut multiple files at once.";
fDesc[3] = "from the main window to perform a desired action. You can split any large file into a desired number of files, merge them back into one or convert to/from WMA, WAV, OGG or MP3 formats.";
fDesc[4] = "program works efficiently with both CUE and XMCD (freedb) formats, and will create perfect MP3, APE, FLAC, OGG, WAV and WMA audio files following the parameters specified in the CUE file. Unicode, UTF8, and ANSI CUE files are supported.";
fDesc[5] = "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[6] = "three different ways. Slice also names your files according to the splitting method chosen. There are two ways in which your files get saved. You can either choose lossless slice or re-encoding.";
fDesc[7] = ", preserving the original quality and bit rate of the source file. Its straightforward functionality allows any user to easily open a file, select the starting and end cutting points, and save the selection in their system.";
fDesc[8] = "files in several pieces by time frame, size or equal time pieces. It has a built in mp3 player to allow you get a preview of the output file.";
fDesc[9] = "simple and fast for user. It allows cutting a large video files in so many small parts without any quality loss. It accepts all common video file format like AVI, MPEG, VOB, WMV and audio file like MP1, MP2, MP3 and MPA.";
fDesc[10] = "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[11] = "all in a very short amount of time and you will not lose any of your audio files' quality. This is a new version of the original Direct Wav Mp3 Splitter, and it includes a big number of new features.";
fDesc[12] = "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[13] = "in between songs, helping you to split your full-album recordings in no time. It also shows you a preview of the audio file in wave form, so that you can edit your MP3 file before splitting it. Besides, it also allows you to merge previously split files, when needed.";
fDesc[14] = "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[15] = "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.";
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 = '...';
}
}