var fDesc=new Array();
fDesc[0] = "The Martin Software Uploader is a Windows 9x/2k application for uploading firmware updates from a PC to Martin fixtures via an upload device connected to the serial data link.
- Support for the LightJockey 4064 ISA DMX Interface under Windows 2000
- Support for the LightJockey PCMCIA Interface
The Martin Software Uploader runs under Windows 95, Windows 98, and Windows 2000.";
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 = '';
}
}