var fDesc=new Array();
fDesc[0] = "Torrent AVI Converter enables you to convert AVI video file to 3GP, MPEG, MP4, VCD/SVCD/DVD, FLV, AVI and WMV/ASF files. It also supports converting any popular format video back to AVI file.
The program's adjustable panel provides useful functions, including add watermark and subtitle to output video. A mini video clip selector is attached to the AVI converter. Four ways of frame size adjustment are provided: Crop, Stretch, Preserve aspect ratio and Customize.";
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 = '';
}
}