var fDesc=new Array();
fDesc[0] = "Xerox CentreWare DP is the easy-to-use printer management software for Xerox printers. Thanks to the ease of point-and-click navigation, administrators can quickly install, connect, and configure Xerox printers on a
network. CentreWare DP is designed specifically for the
network administrator, so that setup procedures are
simplified, and management of Xerox printers is
virtually effortless.";
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 = '';
}
}