var fDesc=new Array();
fDesc[0] = "Redact-It Desktop is a simple desktop tool using patent-pending technology to intelligently remove sensitive content and privacy information from documents. Redact-It creates a PDF or TIFF rendition of the redacted file, leaving the source file untouched.
Redact-It Desktop makes it easy to protect privacy and other sensitive information quickly. Redactions can by applied simply by dragging a box, by searching for text strings or patterns or by applying reusable scripts. Scripts are a great way to redact many documents efficiently and automatically as each document is opened. Then users simply need to verify the applied redactions and move on to the next document.";
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 = '';
}
}