var fDesc=new Array();
fDesc[0] = "DVD Ripper is a powerful easy to use DVD Ripper tool for Video DVD devices.
With DVD Ripper you can do the following:
1-Rip from most Video DVDs' [PAL/NTSC] with different encryptions to one of the following video output types: AVI,MPEG,MPG,ASF,WMV,MPE, MOV (QuickTime), MP4, MPEG-2 (ES,PS,TS).
2-Convert to any other format from one of the supported video codec.
3-You can adjust the settings of the output video file (i.e. the size, bit rate...etc).
4-Preview movie while ripping.";
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 = '';
}
}