var fDesc=new Array();
fDesc[0] = "DPG for X (dpg4x) is a program that was designed to allow the easy creation of DPG video files on Linux, but now it can also run on OS X and Windows. DPG is a special format of MPEG-1 video specifically made for playback on a Nintendo DS.
Features:
- Simple GUI suitable for beginners.
- Includes lots of options for the advanced user.
- Supports individual per-media settings when needed.
- Multiple DPG version support, from DPG0 to DPG4.
- Can process any video file playable by mplayer.
- Encodes your DVD and VCD directly.
- Includes subtitles support.
- Ability to preview the encoding settings.
- Drag and drop support from your favourite file manager.
- Batch processing.
- Multiplatform.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}