var fDesc=new Array();
fDesc[0] = "Easily convert videos to any format of your choice, or directly for mobile devices.
Main features:
- Converts video and audio to virtually all video & audio formats.
- Provides HD and even camcorder AVCHD video conversion.
- Extracts audio from video to M4A, WMA, WAV, MP3, AAC and more.
- Converts video to one of tons of preset formats optimized to fit Apple devices,Android phones, video game consoles and more.";
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 = '';
}
}