var fDesc=new Array(); fDesc[0] = "TurboTax 2017 can be used to prepare and file tax returns for USA and Canada. It provides a simple interface where you can enter details such as what you do for a living, whether you own a home, if you have any children, and charitable donations you made in the year. TurboTax comes up-to-date with the latest tax laws. It can also scan your W-2 screenshot and automatically enter data into all the tax forms."; 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 = ''; } }