var fDesc=new Array();
fDesc[0] = "The Check printing software will help you to print Checks in your bank's format. You can get bank statement with your inward and outward transactions. Having Check printing software it saves time of company and reduces cost and maintenance.
The Cheque Printing Software will show you the way out.
The software has very easy GUI which helps the user to learn it easily. It covers major part of your Bank.
The Cheque Printing software is specially created for the fast growing companies.";
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 = '';
}
}