var fDesc=new Array();
fDesc[0] = "Written to be used in combination with Winamp v5.3 with CLASSIC SKIN
Winamp-Atc is a tool to switch with one button to another (audio) stream, while you can see which frequencies are listened to.
Via 7 panels all the used streams are available, and per category you can simply switch.";
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 = '';
}
}