var fDesc=new Array();
fDesc[0] = "Single-step features:
-Allows you to describe your current life situation.
-Helps you to identify the areas you would most like to change.
-Provides structure to assist you in defining and setting your goals.
-Helps you progress daily towards your goals and track the progress that you are making.
-Helps you in graph your progress to show quantifiable gains.
-Allows you to set new goals as old ones are achieved.
-Helps you motivate yourself, providing daily inspiration as needed to get you past those low moments.
-Allows you to attach motivational pictures and images to your goals to stimulate you and inspire you to success.
-Provides affirmation and visualization exercises to help overcome sub-conscious hurdles & barriers.
-Provides encouragement as you progress along the path by tracking the feedback of your friends, family, and colleagues.
-And much, much more!";
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 = '';
}
}