var fDesc=new Array();
fDesc[0] = "AvanTax eForms lets you prepare Canadian tax information slips and returns. It can easily process various CRA & RQ tax information slips; from the T4, T4A, T5, RL-1 & RL-3 forms to the new RL-31. eForms allows you to easily import data from Excel, CSV, and XML files.
eForms is available in Lite, Basic, Standard, and Enterprise versions with varying features.";
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 = '';
}
}