var fDesc=new Array();
fDesc[0] = "Manage any number of 1099-S records using SoftPro's IRS electronic reporting software, Pro1099. This innovative software efficiently automates the reporting process making IRS 1099-S electronic filing simple and accurate.
Pro1099 integrates seamlessly with ProForm eliminating the need for duplicate data entry. Business rules run to ensure sufficient information has been entered to make year-end filing quick and easy.";
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 = '';
}
}