var fDesc=new Array();
fDesc[0] = "eSmart Payroll's downloadable eSmartForms allows you to prepare Form 1099-MISC/Corrections on your desktop. eSmartForms work with Microsoft Word and use macros to convert your data into an e-file format. You will be able to print your forms using eSmartForms and have the option for e-file by uploading your data file to our site.
Features:
- IRS Authorized e-filing
- Enter data like a real form, except in Microsoft Word
- Able to import Excel data
- Option to upload form online for e-filing or print and mail
- Print forms at anytime at your convenience";
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 = '';
}
}