var fDesc=new Array();
fDesc[0] = "Eazy AUTO4 is an automatic entries generator for Tally.
Features:
- Fully integrated with Tally 6.3 to Tally.ERP 9, for Tally 4.5 to 5.4 SDF format supported
- Link between Tally & MS Excel
- Daily / Monthly Cash Comparison with Min/Max Balance for budgeting before booking entries in Tally
- Multiple Voucher Entries Deletion
- Automatic Entries Generation in Random/Fixed Amount Type within a second
- One period to another period Multiple Voucher Entries shifting
- Using Reference Ledger % wise / Amount wise entries generation for other ledger head on same day or -/ days
- Using Reference Ledger Voucher Entries Booking in reverse format to another company. Like Payment to Receipt
- Multiple Payment Voucher Printing Using Reference Ledger.
- Multiple Ledger Creation in Excel with “Op. Balance”, “TIN”, “PAN” etc. And these ledgers can be automatically posted to Tally.";
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 = '';
}
}