var fDesc=new Array();
fDesc[0] = "EaseFab DVD Ripper helps you to convert DVD to any popular format with ease.
Main features:
- Superior support for any kind of DVD.
- Convert 6X faster and keep excellent video quality.
- Supports 150 ready presets for mobile devices.
- Edit and touch up DVD movies as you like.";
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 = '';
}
}