var fDesc=new Array();
fDesc[0] = "The Axis lighting controller from Leviton provides the powerful control of automated lights with an easy-to-use PC-based software allowing the user to take control of lighting.
Features
- Full support for Automated Lighting
- Limited support for Conventional Lighting
- Advanced Shape Generator for effects generation
- Step-Shift, Shape Shift, & DMX Pilot technology for immediate result variations to the active effect
- Time base Scheduler
- MIDI, AVI, MPEG, & WAV event sequencing
- Multiple Masters for individual mastering of different types of devices
- Spotlight mode for special fixtures
- Keyboard Shortcuts
- Eight Concurrent Playbacks";
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 = '';
}
}