var fDesc=new Array();
fDesc[0] = "A lossless audio codec, backward compatible to mp3 file extension with the bitrates for music approximately 500 to 900 kbps rates.
The following tools are available immediately for your tests:
* Encoding
o Command-line encoder
* Decoding (to wav)
o Command-line decoder
* Playing
o Plug-in for Winamp (for Winamp 5.5 and above)
* Platforms
o Win32 (Microsoft Windows XP, 2000, NT 4, Me/98), Vista
o Linux32
o Mac OS X
* Support
o CD audio (PCM): 44.1, 48 kHz sampling rate, 16 bit/sampl";
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 = '';
}
}