var fDesc=new Array();
fDesc[0] = "PRO-Manager is the free Windows application used to manage compatible ENTTEC DMX USB products.
Main features:
- Configure & test supported ENTTEC USB devices with PRO-Manager.
- Send DMX patterns or use Faders to test DMX Output.
- Supports Art-Net to DMX.
- Standalone mode supports Art-Net recording for Pixie Driver and Pro Mk2 .";
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 = '';
}
}