var fDesc=new Array();
fDesc[0] = "It is a USB DMX adapter for all computer based lighting needs.
Main Features:
-Micro processor enabled
-1500 V full isolation (data & power lines to protect your computer from surges)
-1 Input & 1 Output connector (there is only one DMX port though)
-RDM enabled
-Supports Various 3rd party Controllers/VJs/Tools
-Internal frame buffering
-Drivers for Windows, OSX and Linux
-Universe & user config EEPROM
-Refresh Rate configurable from 1 to 40Hz with a full 512 channel frame
-Break configurable from 96uS to 1.3mS
-MaB configurable from 10.6uS to 1.3mS
-Upgradeable firmware";
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 = '';
}
}