var fDesc=new Array();
fDesc[0] = "It is an audio converter utility program that allows you to convert audio/video files between WAV, OGG Vorbis, MP3, MP2, WMA, AAC, M4A, AMR and other well-known media formats according to your wish.
Main features:
- Very fast and without any quality loss
- Support Batch convert
- Very user-friendly interface
- convert audio/video files from one format to another
- specify frequency, number of channels, bitrate and other parameters of your output files before you convert your audio files";
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 = '';
}
}