var fDesc=new Array();
fDesc[0] = "TurboTax offers tax preparation software for 44 states plus the District of Columbia.
The remaining 6 states do not collect personal income tax, which means we don't have a TurboTax product for Alaska, Nevada, South Dakota, Texas, Washington, or Wyoming.
In TurboTax, in order to prepare a state return you must prepare your federal return first. (They go hand in hand.) TurboTax State transfers data from your federal return into your state return. You can prepare a federal return in TurboTax without preparing your state return -- but not the other way around.";
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 = '';
}
}