var fDesc=new Array();
fDesc[0] = "Magic Audio Converter allows you to convert audio files between WAV, OGG Vorbis, MP3, MP2, Microsoft ADPCM, WMA, VOX, GSM, G723,G726, a-LAW, u-LAW and other well-known media formats according to your wish. Its user-friendly interface supports both drag & drop and shell operation of Windows Explorer. Most work can be done automatically with a few mouse clicks. You can convert many files in batches regardless of source formats and target formmats.
Supporting most popular audio formats: WAV, OGG Vorbis, MP3, MP2, Microsoft ADPCM, WMA, VOX, GSM, G723,G726, a-LAW, u-LAW; Fast Conversion Speed: Audio format conversion is performed directly without any temporary files, and thus enables high converting speed and economy of hard disk resource; Supporting Batch Conversion: You can convert many files in a batch regardless of their source formats and target formats; Supporting Drag & Drop; Much, much 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 = '';
}
}