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] = "cheaper than the average video editing application, but I guess the functionality isn't anything new, seeing that there are many applications that do the same.";
fDesc[4] = "file. The program can merge almost all the popular video file formats including AVI, Divx, XviD, MPEG, WMV, ASF, RM, MOV, 3GP, MP4, FLV and MKV videos.";
fDesc[5] = "program just a video joiner because you can change the output video format to AVI, MP4, 3GP, MPEG, WMV, VOB - and this way you can use the program as video converter too.";
fDesc[6] = "join multiple AVI, MPEG (MPG) or RM (Real Media), WMV/ASF files into one large movie. It can also join most audio files with popular format.";
fDesc[7] = "or MOV|QT files into one large move file with RM | AVI | MPEG MOV | WMV format.";
fDesc[8] = ", WMV, VOB and DivX, and more are supported. The user interface is perfect for novice or non-technical users with big icons. The audio or video quality are not altered by the join operation.";
fDesc[9] = "decided to change its name to FFSJ: The Fastest File Splitter and Joiner. Some name, huh? Anyhow, what this application does is cut your files into smaller parts so that you can fit them in certain media or e-mail it.";
fDesc[10] = ", WMV or ASF files into one large video file, and save as AVI, WMV, MPEG, MOV (Quick Time), VCD, VCD and DVD format.";
fDesc[11] = "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[12] = ", iPod, PSP, Zune, Mov, MPEG,or WMV/ASF files into one large movie file in AVI, DivX, MP4, iPod, PSP, Zune, MOV, MPEG, WMV or ASF format.";
fDesc[13] = "videos and create one large file by joining them all. Fast AVI MPEG Joiner allows you to set the order of the videos according to you. You get 100% of the video quality after joining process, means no quality loss.";
fDesc[14] = "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[15] = "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.";
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 = '...';
}
}