var fDesc=new Array();
fDesc[0] = "Payroll System 2013 is an accounting solution that is made up of five fully integrated programs:
-LivePayroll (incl. 941/940)
-941/940
-W2/1099
-Payroll Corrector
-W2/1099 E-File add-on
You can enter payroll or 1099-MISC data on a quarterly, monthly or paycheck basis or import from QuickBooks and the program automatically calculates Social Security and Medicare.";
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 = '';
}
}