var fDesc=new Array();
fDesc[0] = "The software is for users to allow them to take advantage of TDS return filing.
Main Features:
- Preparation and Validation of e TDS return file.
- User can Generate Forms 24Q, 27EQ, 16, 16A, 16AA, 27A, 27B, 27D, ITR1 by giving
- Single Input (with correction statement).
- List of All India Bank Branches Codes Available.
- Salary Calculation taking care of chapter VIA Deductions and Tax thereon.
- Facility to calculate amount of Monthly TDS to be deducted.";
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 = '';
}
}