var fDesc=new Array();
fDesc[0] = "MUM is a Windows application that allows-two way communication between the PC and certain Martin fixtures. The application requires a Martin USB DABS 1 interface in order to communicate with the fixtures.
MUM can only communicate with one fixture at a time.
MUM is designed to work with Windows 98, ME, 2000 and XP.
MUM currently supports communication with the following fixtures, fixtures listed with a version number, must have at least that version to be supported in MUM.
- Martin Alien O2, version 2.1.0
- Martin Exterior 200, version 2.0.0
- Martin Exterior 600, version 2.0.0
- Martin Exterior 600 compact, version 2.0.0
- Martin Exterior 600 NS
- Martin Exterior 1200 Wash
- Martin Exterior 1200 IP
- Martin Fiber Source CMY 150, version 2.0.0
- Martin Imager, version 2.1.0
- Martin Inground 200 CMYI
- Martin Inground 200 CI
- Martin Exterior 200 LED
- Martin Extube
- Martin Tripix 300 and 1200
- Martin Exterior 400 LED series";
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 = '';
}
}