var fDesc=new Array();
fDesc[0] = "Audio Convert Master enables you to easily convert your audio files from one format to another. You can convert single files or batch convert a list of files. It supports a wide range of audio formats such as MP3/MP2, WMA, WAV, OGG, MPC, VOX, RAW, G723, G726. These features meet all your needs for audio converting
Feature List:
Easy-to-use - Simply click a button.
Fast conversion - saves you time
Supports batch conversion - convert all your files at once
Excellent digital quality .";
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 = '';
}
}