var fDesc=new Array();
fDesc[0] = "Imagine your entire DJ collection loaded into one professional, stand-alone product.
Create playlists and search for songs by title, artist, album, or genre. Rip MP3s from either of the built-in CD players, from your computer over USB, even record vinyl directly through the analog line inputs. Travel light to gigs without sacrificing anything but backaches. Discover the strength in unity. Discover the power of HDCD1.";
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 = '';
}
}