var fDesc=new Array(); fDesc[0] = "This application automatically checks for newer versions of printer firmware and if any are available, offers the user the option to download and install them.
Once installed, the application runs silently from the System Tray, and periodically checks (at user-definable intervals) for new firmware updates on the Magicard website.
The application is intended to operate with Magicard Pronto, Enduro, MC200 and Rio Pro printers."; 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 = ''; } }