var fDesc=new Array();
fDesc[0] = "XMIX is an easy-to-use OpenSource audio player. It's goal is to provide an easy access to audio ressources within a friendly listening environment .
Easy to use, XMIX player is able to read most common audio formats and protocols (mp3, ogg vorbis, web radio, etc).
It's GUI allow to switch from a discreet player to a rich listening environment .
It addresses as well persons looking for an effective audio player as well as the music lovers in search of an unusual audio player.
Main features:
-Full, light and stable player
Able to read most standard audio formats and protocols, one program, no installation required
-Custom Design
Appearance completely customizable, skin editor, window arrangement, keyboard shortcut for each function
-Completely free and OpenSource
One single software edition including all features for all and for free
-Multi-language, programmable audio engine, pilotable by an external program, optimization of used memory";
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 = '';
}
}