var fDesc=new Array();
fDesc[0] = "FutureTax T2 is an easy-to-use, secure, Corporation Internet Filing(CIF) and 2D Bar Code certified T2 tax preparation software package which allows you to submit your tax return online, or print and mail-in paper returns.
-Affordable and unbeatable prices
-Pay when you are satisfied
-Easy to fill in CRA's T2 forms
-Submit your tax return online if eligible
-2D bar codes are fully supported
-Secure tax return filing on your own computer; your tax information will only be transmitted to CRA when you submit it
-Print out or save as PDF file for paper returns
-Fast, simple and supported";
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 = '';
}
}