var fDesc=new Array();
fDesc[0] = "Tutu FLV to AVI Converter allows you to convert Flash FLV video files to AVI video files, by using high quality encoder and decoder.
This FLV to AVI program can convert all kinds of FLV files, including On2 vp6 video FLV, H.263 video FLV to AVI files. Also the application allows to you set some parameters of conversion options, for example bit rate, frame rate, aspect ratio, etc..";
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 = '';
}
}