var fDesc=new Array();
fDesc[0] = "Convert FLV and SWF files to different video and audio formats
You can convert to AVI, MPEG, WMV, MP3, ASF and WAV.
Easy to use
This program offers very user-friendly interface. All you have to do is to add your files, select a desired output format and click Convert.
Convert many files at once
You can either drag and drop your FLV files into the program's window, or click Add files and select which files you want to convert.";
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 = '';
}
}