var fDesc=new Array();
fDesc[0] = "NN Audio Player is the perfect audio player to keep in the background while using resource-intensive programs, like 3-D games, due to its low memory footprint and CPU usage.
It is a also a fully capable media management program, which uses the industry-level FMOD library to provide robust audio playback options for a variety of formats: MP3, WMA, FLAC, OGG, WAV, MID, MOD, S3M, IT, and XM files are all supported.
Along with a simple, easy-to-use playlist, that supports the popular M3U format, NN Audio player also contains an advanced media library with full-text search, and multiple sorting options. Finding your favorite track in the heap was never easier! And thanks to SQLite, the whole database takes a minimal amount of space on your disk.";
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 = '';
}
}