var fDesc=new Array();
fDesc[1] = "supports mpeg2 (that is, Quick time is now compatible with .mpg, .mpeg, .vob, .vro, .m2v, .m2a, .m2s). It is also compatible with a variety of audio formats like AIFF, WAV, MOV, MP4 (AAC only), CAF and AAC/ADTS. QuickTime also opens images in jpeg format and other image formats.";
fDesc[2] = "and reducing size for audio/video files, converting for audio/video playback devices, extracting audio tracks from video files, ripping audio/video discs, reparing corrupted or partial downloaded video files, and so on.";
fDesc[3] = "resolution and picture adjustments. Tray Icon enables user to launch the application and set it to mini-mode. Picture Slideshows can be created using the Stitch-Video feature.";
fDesc[4] = "author an playback MPEG-4 media (audio and video) under Windows, Mac OS X and Linux. This codec can be configured through the 3ivX Config entry in the Program's Menu.";
fDesc[5] = "development effort. All code is released under the terms of the GNU GPL license. The Xvid video codec implements MPEG-4 Simple Profile and Advanced Simple Profile standards. It permits compressing and decompressing digital video in order to reduce the required bandwidth of video data for transmission over computer networks or efficient storage on CDs or DVDs. Due to its unrivalled quality Xvid has gained great popularity and is used in many other GPLed applications, like e.g. Transcode, MEncoder, MPlayer, Xine and many more.";
fDesc[6] = "levels of visual quality, compression and control. DivX Pro plugs into your video software to produce high-quality movies (at one-tenth the size of a DVD) for viewing on your PC or, with DivX Certified DVD players, right on your TV.";
fDesc[7] = "sizes. The 3ivx decoder plays back most MPEG-4 variants (including DivX 3,4 and 5, Apple MPEG-4, Philips MPEG-4 and XviD). The 3ivx decoder produces noticeably higher quality video than other decoders due to its high quality post-processing filters, and because of its core design and optimization maintains a record-breaking decode speed. The windows version of the decoder includes an AAC audio decoder for Windows Media Player as well as a Media Splitter (to play back .avi, .mov and .mp4 files inside Windows Media Player). The 3ivx encoder produces industry-leading compact high quality MPEG-4 video and is distributed as a plug-in for QuickTime as well as a plug-in for Video for Windows. This allows you to encode MPEG-4 video in .avi, .mov or .mp4 files (with AAC audio) with the encoding application of your choice.";
fDesc[8] = "creation of a full copy of a DVD movie, locating a VIDEO_TS folder on the hard drive and burn it to a DVD disc or select several movie titles and join them together and burning audio files onto a DVD.";
fDesc[9] = "the video files to AVI, WMV, MPEG or FLV, and at no cost at all! When needed, the program will shrink your DVD-9 to fit into a DVD-5 blank disc, with the minimum loss of quality.";
fDesc[10] = "to AVI, or encode to AVI the videos you burnt into VCDs and SVCDs. You can select which parts will be converted, as well as change the aspect ratio, or the video and audio quality.";
fDesc[11] = "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[12] = "drive in the AVI file format. This utility lets you use your PC as video recorder. With Virtual VCR, it is extremely easy to save your favorite TV programs (TV turner board required) and digitalize your VHS or Beta video tapes.";
fDesc[13] = "compression choices. If You Can See It ... You Can Record It! Create videos from your computer screen without spending hundreds of dollars on screen capture software!";
fDesc[14] = "internet. So, it is the codec they usually rip a DVD into. The main advantages of DIVX is that the video quality is maintained to the maximum while the file sizes are small. It gives one of the best compression available.";
fDesc[15] = "webcams, TV Tuner cards, digital video, digital cameras and more. You can set audio and video compression codecs, output frame size and rate, and take snapshots with a hotkey.";
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 = '...';
}
}