var fDesc=new Array();
fDesc[0] = "Enterprise Browser is a powerful, next generation industrial browser that enables developers to build feature-rich web applications that integrate seamlessly with the features in Zebra mobile computers and peripherals. Enterprise Browser’s feature-rich mobile application development tool allows users to seamlessly integrate the browser into the native peripherals of a device, while enabling barcode scanning, signature capture, and much more. Enterprise Browser will replace the Zebra Pocket Browser and RhoElements Shared Runtime.";
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 = '';
}
}