var fDesc=new Array();
fDesc[0] = "Leveraging the power of ZebraLink, ZebraNet Bridge Enterprise allows your IT staff to centrally deploy, manage, and monitor your Zebra printers from a single PC screen anywhere on your global network. Installation and configuration is fast right out of the box. And management is incredibly quick and simple thanks to the Windows-like graphical user interface with drag-and-drop functionality and wizard assistance";
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 = '';
}
}