var fDesc=new Array();
fDesc[0] = "The widget, developed in Adobe Air and available for Windows, Mac and Linux, works by presenting data from the PaperCut server in a fun an interesting way. It helps organizations reduce their paper use by empowering employees/students/users with the following:
It draws users' attention to their printing impact.
Allows users to compare/benchmark their usage.
Highlights environmental facts about paper use.
Supports a non-profit organization.";
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 = '';
}
}