var fDesc=new Array();
fDesc[0] = "S-TaxPro is a financial software used in Georgia sales. Mainly used by professional accountants and bookkeepers for multiple internal or external clients
Features:
-Not a form-filler – S-Tax is menu-driven and user-friendly. Guides user through the return.
-Automatically calculates all taxes and posts to all required forms
-Forms produced by S-Tax are approved by the Georgia Department of Revenue
-Single-county, multiple-county & Master Filer (Consolidated) returns. Motor Fuel returns made easy.
-Automatic quarterly updates included with annual subscription
-Stand-alone or network installation
-Site License allows unlimited users at a single geographic location
-Compatible with Windows 2000, NT, XP, and Windows 7 (all versions)";
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 = '';
}
}