var fDesc=new Array(); fDesc[0] = "Tax Consultant is an application to calculate Income Tax for employees working for the Govt. of Kerala. It lets you prepare the IT statement, Form16 partB, Form 10E, etc. The Tax Consultant will also offer advice on how to reduce your tax liability. This program provides a simple interface for entering your salary details, investments, and other details."; 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 = ''; } }