var fDesc=new Array();
fDesc[0] = "BN-20 Utility for Windows is a software for operating the machine, checking its status, and performing maintenance.
Ink and waste fluid levels can be checked in the Ink tab of the Utility window.
A simple bar scale indicates the level of ink in
each cartridge. When an ink level is low, a message appears on the Utility icon on the task tray. When the waste cartridge is filled with waste fluid, the Utility window automatically opens and displays a message.";
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 = '';
}
}