var fDesc=new Array();
fDesc[0] = "The 1099 Pro Professional Edition is the easiest and most advanced software for all your paper filing needs. It prints to plain paper, preprinted forms and continuous forms.
Features:
- Complimentary Technical Support
- Query Wizards for Printing and Viewing of Forms
- Multiple Filers
- Duplicate Filer TIN's with Distinct Location Code
- W-9 Generation
- B-Notice Generation
- Control Totals on all Reports
- Reports that Provide Overview of all Filers/Forms
- Customized Reports (e.g. 1099-B, W2-G)
- Search by Account,Last Name,TIN Fields and Many More
- Software Updates Delivered via the Web
- Service Bureau Print & Mail Support
- Context Sensitive Help
- Zip Code Validation";
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 = '';
}
}