var fDesc=new Array();
fDesc[0] = "PCDJ FX VRM the easy-to-use, professional digital audio controller.
This DJ system for professionals is comprised of a pair of virtual Players, Mixer with 3 band EQ and Infinity Kill buttons, FX Module, LE (Loop Editor), Recorder, Recordcase, and the optional KJ VRM Plug-In (Karaoke) all visible from one computer screen.";
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 = '';
}
}