var fDesc=new Array();
fDesc[0] = "It's a complete MVAT package for chartered accountants, advocates, tax consultants and companies.
Main Features:
- Easy User Interface that makes the user interact with software more quickly and easily.
- Login based make the software and data more secure. Every user has its own login and password.
- Fill dealer master information with ease in one page.
- Data Entry of Sales and Purchases for VAT and CST Calculations.
- Import Annual Returns Data from Computation with a facility to choose which Section or Annexure to import (Including facility to import Annexure F Data)
- Facility to Prepare E-Application for CST Forms with inbuild validation and Auto E-Filling.";
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 = '';
}
}