var fDesc=new Array();
fDesc[0] = "NETFILE is an easy-to-use, convenient option for filing your personal tax return. It streamlines the tax-filing process and offers the following benefits:
* secure and confidential;
* faster refunds (in as quick as eight business days);
* greater accuracy (with the use of software, we don't re-key the information and there is less chance of errors);
* no paper return to mail;
* no receipts to send in, unless CRA asks for them at a later date;
Restriction:
* Supports returns for all provinces and territories but Quebec.
* Doesn't support T1273 for Harmonized AgriStability and AgriInvest Farming Program Information";
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 = '';
}
}