var fDesc=new Array();
fDesc[0] = "CA 571 Preparer generates and prints the following:
- Main Form 571-L, Business Property Statement
- Schedule A—Cost Detail: Equipment
- Schedule B—Cost Detail: Building/Leasehold Improvements
- Schedule D—Supplemental Schedule (Acquisitions/Disposals)
- Forms 571-A and 571-F Agricultural Property Statements
- and all accompanying schedules
Additional Features:
- Forms are filled in onscreen for easy data entry.
- Prior Year Detail is entered on supplemental statements that print with the main form and roll over from year to year.
- Client Information can be imported from other CFS programs, including CA Sales Tax Preparer.
- 571 Cost Detail rolls over from year to year.
- Prints invoice for fee collection.
- Prints editable Cover Letter with Client Filing Instructions.
- Label Maker prints mailing labels/envelopes for all 58 counties.";
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 = '';
}
}