var fDesc=new Array();
fDesc[0] = "StageNow was thoughtfully designed to make device staging as easy as possible, with a minimal learning curve. Creating a staging profile with all the configurations, settings and applications your devices require is as easy as choosing selections from drop down boxes and clicking on buttons — all without any coding.
Support for two modalities allows you to utilize the features of your Zebra mobile computers to maximize staging simplicity. Whether you opt to print and scan a barcode or simply place devices close to an NFC tag, devices will automatically configure themselves — eliminating error-prone, time-consuming and costly manual staging procedures.";
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 = '';
}
}