var fDesc=new Array();
fDesc[0] = "Built-in-archive for storing thousands of MP3s, two playlists, two independent players, automatic playlist generation, automatic mixing with fade-in/fade-out (only one soundcard needed), manual mixing (two soundcards needed).
MpegDJ DoublePlayer was specially made for the RC2000 Remote Control, but now available as stand-alone-software. Easy-to-use and ideal for use in discotheques, clubs, pubs and restaurants.";
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 = '';
}
}