var fDesc=new Array();
fDesc[0] = "PrintTrak is a cost effective print logging and accounting; solution in situations such as businesses, libraries, internet cafes and schools/universities where print costs need to be monitored and/or recovered.
PrintTrak monitors print jobs being sent to printers, recording details such as the user who sent the job, the name of the job and the number of pages printed for a the print job. Charging schemes can be easily set for each printer and users can be put into functional groups or classes.";
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 = '';
}
}