var fDesc=new Array();
fDesc[0] = "This aim of this project is to develop a software solution that will allow for bidirectional communication to and from the CDJ-400 device via the Open Sound Control protocol. "Bidirectional" means input via buttons and controls on the device will be output in OSC and the lights and screen can be controlled by OSC input.
This project is currently being implemented in C# on the .NET platform. C# was chosen because it is easy to develop in and allowed for rapid prototyping of the concept. Several OSC and USB libraries were also available for .NET at the time when the language was being selected.";
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 = '';
}
}