var fDesc=new Array();
fDesc[0] = "With MICR / E-13b TrueType Fonts for Windows Check Printing you can print your own checks. Check printing requires a laser printer, special magnetic toner, check paper, and MICR / E13-B fonts.
This font includes the numbers 0 through 9 and four special characters: On-Us, Transit, Amount, and Dash.
This package also includes a limited set of eight different Secure Fonts™. They let you print payee names and check amounts in dollars, pounds sterling, euros, or yens that are very hard to forge or alter.";
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 = '';
}
}