var fDesc=new Array();
fDesc[0] = "NETira Label Designer software provides users with an easy to use out of the box label design software package to meet the basic needs of printing requirements. Whether it’s a single printer or multiples, NETira is ideal for entry level printing to support Datamax-O’Neil label printing while effectively utilizing the printers’ unique capabilities.
Specifications:
- Supports most Datamax-O’Neil label printers (visit our website for current models supported)
- Runs on Windows XP, Windows 2000, Vista and Windows 7
- Communication support includes: Serial, Parallel, USB, LAN, WLAN
- Supports 1-D linear bar codes, graphics, images and text";
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 = '';
}
}