var fDesc=new Array();
fDesc[0] = "Zen West Bengal VAT is a complete automation of West Bengal Value Added Tax, specially designed for professionals/dealers for the purpose of calculating VAT payable, preparing periodic return, audit report, and more.
Features:
- E-filing of periodic return (Form 14, CST form 1, Form 14D, form 15).
- Preparation of Audit report.
- Preparation of revised return by maintaining the original return data.
- Full data backup and restore facility.
- Reports can be exported and saved in PDF or MS-Word format.";
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 = '';
}
}