var fDesc=new Array();
fDesc[0] = "TaxPro e-TDS is a TDS return filing program with a multiple-client database. Once you have entered the assessee details in its database, all the forms get populated automatically. e-TDS Return Status indicators; "Return Filed" or "Return Pending" is shown for each quarter giving return status of assessee at your fingertips.
For professionals and companies, e-TDS Professional and e-TDS corporate versions are available with additional features.";
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 = '';
}
}