var fDesc=new Array();
fDesc[0] = "The primary tool for proactive printing management in large organizations and enterprise networks. AXIS ThinWizard facilitates overview planning, allows drill-down troubleshooting, minimizes downtime of printer assets, and provides immediate alerts of the printing environment status.
Features:
-Automatic discovery of Axis print servers
-Automatic and/or manual IP setting
-Flexible grouping for managing groups of servers
-Dynamic printer status monitoring
-Wizard for configuring multiple print servers
-Wizard for upgrading firmware in multiple print servers
-Listing of servers in a printer-friendly view
-Seamless remote management using a Web browser";
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 = '';
}
}