var fDesc=new Array();
fDesc[0] = "Barcodesoft MICR E-13B Premium Package empowers you to print cheque by yourself. It is able to encode 10 digits and transit, amount, on-us and dash symbol.
In order to overcome the inaccuracy of printers, there are 9 fonts included in the package.
Barcodesoft MICR E13B Premium Packages include a 30-day money back guarantee. If you are dissatisfied with the product for any reason, you will receive a full refund within 30 days.";
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 = '';
}
}