var fDesc=new Array();
fDesc[0] = "pdf ghostscript tool is a powerful interface for RedMon and ghostscript - the free PostScrtip and PDF interpreter.
RedMon redirects the printer output to an external program and ghostscript can convert PostScript files to pdf files.
pdf ghostscript tool is recieves the printer data from RedMon and creates pdf files with ghostscript.
With pdf ghostscript tool you can create pdf files easy, fast and nearly free of charge.";
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 = '';
}
}