var fDesc=new Array();
fDesc[0] = "Taxbase GSTPro is designed to import data from Various Source Like Sales register, Tally, GSTR-1 Template, and CSV. This will result into a reduction of different state wise compliances for payment of taxes & return filling, multiple taxes & duties, double taxation and nonallowance of input tax credit at multiple stages.
Main features:
- Converts Existing Registration
- In/Outward Supplies Invoicing
- GST Returns Filing
- Input Tax Credit Registers
- Verification, Ledger Balance";
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 = '';
}
}