var fDesc=new Array();
fDesc[0] = "We help you, the taxpayer to manage your engagement with SARS quickly, easily & conveniently on desktop.
Download e@syFile™ Employer onto your desktop to import and validate declarations in offline mode.
Only go online to submit returns, reconciliations and tax certificates, or manage agent appointments (AA88).
Remember, for time-saving and hassle-free submissions, electronic filing is just a click away.";
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 = '';
}
}