var fDesc=new Array();
fDesc[0] = "DVD to 3GP Video Rip/Convert Factory is a DVD ripping tool. It rips DVDs to AVI, DivX, XviD, MPEG (MPEG-1, MPEG-2), WMV, 3GP, MP4, VCD, and SVCD formats. It can rip DVD/IFO files and batch convert them by chapters or time with high-quality image and sound.
It allows you to select subtitles and audio tracks and supports resizing, cropping, and working with aspect ratio.";
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 = '';
}
}