var fDesc=new Array();
fDesc[0] = "Printer Status Monitor is a utility dedicated for Sharp printers that is compatible with the SNMP protocol version 1. It lets you check the status of a printer - to see if it has sufficient paper and toner - before starting the job and without leaving your desk. It eliminates wasted trips to the machine by notifying you when your job has been completed.";
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 = '';
}
}