var fDesc=new Array();
fDesc[0] = "GenuTax Planner is an innovative Canadian tax planning software product that allows you to calculate a reasonable estimate of your tax liability for 2011 and 2012. Future updates will add the ability to calculate estimates for 2013 and beyond.
Personal tax planning should be a year-round process, not just something you consider at the time you file your annual tax return. GenuTax Planner software was designed to assist you with your year-round tax planning, ensuring that you are able to take the steps necessary to maximize your tax savings, well before the end of each year.";
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 = '';
}
}