var fDesc=new Array();
fDesc[0] = "With Aimersoft DVD Ripper you can quickly rip DVD to the right format for your mobile device, desktop application, or internet upload, so you can watch, edit and share your favorite movies anywhere.
Main features:
- Watch DVDs on your iPod, iPhone, Android and more
- Convert your movies to most standard and HD formats
- Trim and crop frame-by-frame, remove subtitles and more
- Extract DVD audio to use dialogue, music, or remove dubbing";
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 = '';
}
}