var fDesc=new Array();
fDesc[0] = "FetchReport PDF Creator allows you to upload your document directly to FetchReport.com as a PDF file and automatically send it to your client(s).
To use the FetchReport PDF Creator, simply open any Windows program that has a print option. When you print your document, choose the FetchReport PDF Creator option.";
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 = '';
}
}