var fDesc=new Array();
fDesc[0] = "ZPlayer is a music player written in java, have a unique visual and works on Windows.
- Native support for MPEG files Layer I, II and III, PCM Wave, Vorbis Ogg, Flac, MOD files (S3M, MTM, IT, XM, UMX, MO3), Dolby AC3, MID, and CDA;
- Support for developing plugins to support new audio formats;
- Support for Winamp2 plugins (only for Windows and Java of 32bits);
- Support for extended audio format (24/32bit / 7.1ch / 192Khz), in Windows with JNI DirectSound implementation, and Linux with JNI ALSA implementation;
- 16-bands equalizer;
- Sound effects such as bass redirect and wide stereo;
- Automatic matrix conversion between channels: Mono, Stereo, 4.0, 5.1 and 7.1;
- Anti-aliasing and interpolation in resampling audio to provide the best possible quality;
- Independent volume channels with redirect between them.
- Has a unique visual where the speaker vibrates conform the bass sounds;
- All streams are processed in 32bits IEEE Float;
- Totally free.";
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 = '';
}
}