var fDesc=new Array();
fDesc[0] = "Goal Planner Plus will help you set your goals more easily.
Main features:
- Goals are highlighted so you immediately see which goals are completed and which goals need your immediate attention.
- Goals can be prioritized to help you identify which goals are more important.
- Goal Planner Plus sets deadlines by adding a completion date to your goals.";
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 = '';
}
}