var fDesc=new Array();
fDesc[0] = "Sales Tax Manager is a desktop application that allows electronic returns and remittance to all parishes in Louisiana. The program will create signature-ready state and local sales and use tax returns from a blank sheet of paper. Also, it will eliminate unnecessary data entry, handle all calculations and reduce errors with its familiar and user-friendly interface for all returns.
Features:
- Look-up or print out tax rates and tax authority information for all jurisdictions.
- Import data into the Sales Tax Manager from your accounting system.
- Easily generate monthly zero returns.
- Apply rounding to dollar amounts when allowed.
- Print client-filing instructions, check requests and other useful reports.";
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 = '';
}
}