var fDesc=new Array();
fDesc[0] = "Vinny Federal Income Tax Estimator 2011 is a $2 utility program that provides a quick estimate of your calendar year 2010 federal income tax. It is very simple to use.
-Select filing status radio button.
-Check all exemptions that apply.
Note age and sight exemptions are applied
only if you use the standard deduction.
-Enter adjusted gross income in 1st yellow box.
-Enter total dependents claimed in 2nd yellow box.
-Enter dependents under 17 during 2010 in 3rd yellow box.
-Optional: Enter itemized deductions in 3rd yellow box.
The program uses the larger of standard or itemized
deductions.
-You can revise entries at any time.
-Use the [Clear] button to reset all values to zero.
When you exit the program a small file (vTax.txt)
in the vTax directory stores the last entered values.";
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 = '';
}
}