var fDesc=new Array(); fDesc[0] = "ChequeSystem can print the payee, date, amount, "a/c payee only", and other information on your cheques. It supports laser, inkjet, and dot-matrix printers. Batch Printing mode lets you print a sequence of cheques in batch. ChequeSystem software also provides Payment Voucher, which can be added to the cheque.

All issued cheques are kept in records. You can add notes and audit code on the cheques for internal use. Search function help you locate cheque easily."; 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 = ''; } }