var fDesc=new Array();
fDesc[0] = "A Printer Monitor is an easy to use application that monitors the activity of up to three printers connected to a machine. The application provides information on user, time and cost of each printing job.
A Printer Monitor offers you complete printing control for your home and small office printers.
A Printer Monitor Features:
Monitor printer activity - monitors up to three printers installed on a computer.
Monitor user printing activity - gives report for each user (in case of multiple users on a computer.
Cost of printing - controlling printing costs is easy, the application provides a total cost for each print job.
Email notification - helps you stay in touch with printer activities even if you are not in your office or at home. You'll get the reports by e-mail by specifying an e-mail address and the frequency for sending e-mails.
Easy to read reports - the reports are shown in html, an easy to read format with the possibility of having them printed.";
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 = '';
}
}