var fDesc=new Array();
fDesc[1] = "approach when they are faced with the task of cutting portions of video. What they do is cut the video and then re-encode it.";
fDesc[2] = "format including MP4 and DVD videos and create video clips in minutes for your multimedia phone, iPod and portable multimedia players. The user interface is very simple and designed while keeping the novice in the mind.";
fDesc[3] = "long videos that you can't quite fit into a CD and DVD, but you need to burn. This application will take care of that task really easily.";
fDesc[4] = "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[5] = "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[6] = "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[7] = ", MPG, WMV, 3GP, MP4, VOB, BIN, CUE and many other CD and DVD formats. You can simply open any 3gp, amv, avi, div, divx, flv, mkv, mpeg, mp4, mod, mov, rm, dat, bin, vob, wmv, asf or xvid file, set start and end points, select the output format, video quality, resolution and that's all.";
fDesc[8] = "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[9] = "differences between those three processes are small, but it is nice to have them all within a single application.";
fDesc[10] = "differences between those three processes are small, but it is nice to have them all within a single application.";
fDesc[11] = "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[12] = ", MOV, 3GP, MP4 file into smaller video clips. You can split any file by limiting the time duration or setting up the start and end points that will get you desired part of the video. A video preview and time line view helps the user to get accurate splitting.";
fDesc[13] = "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[14] = "split any supported video file. The video files this program supports are AVI, MPEG, MPEG4, WMV, VCD, SVCD, DVD, DIVX, XVID, ASF, DAT, VOB and Quick Time.";
fDesc[15] = "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.";
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 = '...';
}
}