var fDesc=new Array();
fDesc[0] = "Added "Non Tax" option into "Taxable by" field in Department and PLU Programming
Therefor the taxable by can be changed to non-tax if needed.
Descriptor of DEPT/PLU is/are downloaded together with DEPT/PLU
PC Utility for ER-260/265 has other functions called DEPT Desc./PLU Desc. below,
for sending DESCRIPTORs Only. DEPT/PLU downloads ONLY price and status.";
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 = '';
}
}