var fDesc=new Array();
fDesc[0] = "Fennec player is a universal media player which mainly focuses on high definition audio/video playback and transcoding, it can play and convert into almost every audio/video file format available (see the list below).
It supports converting/ripping/joining and playback, including features like headphone preview, easy tag editing, file name formatting, channel separated equalizations, DSP effects, volume/gain control and equalization for conversion and so. It's designed to be fast, compatible and easy to use - with 64bit floating point internal precision for audio.
Fennec player is released under GNU General Public License, so you can read/modify source codes and contribute your support to the project freely (for more information, see help documentation).";
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 = '';
}
}