var fDesc=new Array();
fDesc[0] = "Plainamp is a free, open source audio player for Microsoft Windows.More precisely it is a rewritten Winamp core (or plugin host) which means it relies on Winamp plugins heavily. It is still in early alpha state.
Features:
-Winamp plugin support (input, output, visualization, DSP and general purpose)
-Plugins can be manually loaded/unloaded during runtime
-Native output stacking — several output plugins at once
-Native vis stacking — several visual plugins at once
-Native DSP chaining — several effect plugins in a chain
-7 order modes";
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 = '';
}
}