var fDesc=new Array();
fDesc[0] = "This DJ software is the complete DJ software solution. Powerful features united in an easy-to-use interface making mixing your favorite tracks easy. Mix your music live while applying effects on the fly.
Your songs will always stay on beat with automatic beat detection. Load a track onto a deck and it automatically scans the file for a beat, assigns a beat per minute (BPM) and changes the tempo on the second deck for perfect synchronization.";
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 = '';
}
}