var fDesc=new Array();
fDesc[0] = "GreenPrint eliminates wasteful pages in any printout automatically, saving you time and money, and maybe more importantly, saving trees, reducing greenhouse gasses, and decreasing waste.
GreenPrint's patent-pending technology does this by analyzing each page of every document sent to the printer and looking for typical waste characteristics (like that last page with just a URL, banner ad, logo, or legal jargon).
GreenPrint also incorporates an easy to use PDF writer, an interactive print preview, and a reporting feature which keeps track of the number of pages and the amount of money you have saved.";
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 = '';
}
}