var fDesc=new Array();
fDesc[0] = "CheckWriter runs on any Windows operating system. Using a laser, ink-jet or bubble jet printer and a piece of Federal Reserve regulation check paper, any business can create a draft of the customer's check that can be immediately deposited. Banks treat a draft just like they treat a check you get through the mail or over the counter.
CheckWriter™ is a stand alone payment system that works with any Windows computer. Using a laser or ink-jet printer, you create a draft of the customer's check, which can be deposited into any U.S. Bank the same day, guaranteed. There are no associated transaction fees and no special bank account is required.";
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 = '';
}
}