var fDesc=new Array(); fDesc[0] = "Point Motivator is an application to help motivate you to do the things you want to do.
It focuses your attention on a tangible reinforcement "score" that provides immediate feedback about your actions.
The program provides an intuitive visual display of your progress over time to provide positive reinforcement.
It lets you configure tasks and their associated values, and share these configurations with others.
It also lets you set up rewards you can "purchase" with your earned points, to provide additional motivation."; 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 = ''; } }