var fDesc=new Array();
fDesc[0] = "An easy to use tool that allows you to display the songs you are listening to in your favorite WinMX chat rooms.
Main Features:
* Support for displaying what’s playing from Winamp, iTunes, VLC, and foobar (with a plugin).
* Support for sending currently playing information to WinMX, RoboMX, Metis, Nushi, Ouka, Rabbit, and ZCB.
* Advanced color scripting abilities built in.
* Visual feedback of how your display message will look.
* Vast amount of information variables available for your display message.
* Up to 1,000 custom color patterns can be created and saved
.";
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 = '';
}
}