var fDesc=new Array();
fDesc[0] = "The Magic 260 is a 19-inch rack mount DMX controller from Elation Professional that’s perfect for lighting users with “mid-level” needs, such as neighborhood clubs, discos and professional DJs.
With 260 DMX channels, the Magic 260 can control up to 48 DMX-compatible moving lights. It can store up to 24 x 48 scenes and 264 shows.
The Magic 260 is ideal for lighting operators who don’t need a big console like the Show Designer 1 or 2, but want something larger than a basic 8 or 12-fixture unit, and with more features.";
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 = '';
}
}