var fDesc=new Array();
fDesc[0] = "Features:
-Projects taxable income and calculates required withholding allowances
-Enter YTD data for increased accuracy in mid-year calculations
-Allows your clients to plan their refunds
-Prints Form W-4, W-4P, W-4V, DE-4, and DE-4P
-Prints Form 1040-ES and 540-ES
-Includes paycheck withholding calculator
-Includes standard and custom invoice generator
-Imports clients and preparers from other CFS programs and from other major tax preparation programs";
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 = '';
}
}