var fDesc=new Array();
fDesc[0] = "Moo0 AudioTypeConverter lets you easily convert audio files into different formats.
It is very easy to use, and you just need to drag and drop files onto the program window. It currently supports 33 output formats and many more for the input.
Output Formats:
3GP, 3GP (AAC), 3G2, 3G2 (AAC), AAC, AC3, AIFF, AMR, AU, RM, WAV, WAV (ADPCM IMA), AU (a-Law), AU (u-Law), FLAC, M4A, M4A (ALAC), MMF, MOV, MP2, MP3, MP4, WMA, PCM (Little-Endian), OGG, OGG (FLAC), RA, WAV (ADPCM Microsoft), WAV (ADPCM Yamaha), WAV (GSM), PCM (Big-Endian), PCM (a-Law), PCM (u-Law)
Input Formats:
Output formats Many 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 = '';
}
}