var fDesc=new Array();
fDesc[0] = "NuVJ allows you to mix videos and images in real time in a very intuitive way. It is built around a DJ-deck like setup where you have two playback decks and can mix the output of the decks using a mixing slider. This setup is reflected both in the software interface and on the controller: deck A is represented by the left area of the main panel, while deck B by the right side and the mixer and master effect controls are in the middle.";
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 = '';
}
}