var fDesc=new Array();
fDesc[0] = "AcQuest 1120 Solution represents IRS Corporate Form 1120 tax software designed to aid in the preparation of the U.S. Corporate Income Tax Return.
The 1120 Solution will prepare a basic Form 1120, the supporting detail sub-schedules, depreciation calculations, and some of the common associated forms of federal Form 1120, U.S. Corporation Income Tax Return.";
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 = '';
}
}