var fDesc=new Array();
fDesc[0] = "MindHabits Trainer contains a set of simple games that can reduce stress levels and boost your confidence and self-esteem!
Worrying about your next date or the big presentation to your boss? Feeling low? Instead of running to the closest book-store to find a trendy self-help book, get MindHabits. Find relief at the click of a mouse. A video game that is actually good for you? Now, that's a concept!
Based on social intelligence research conducted at McGill University, these stress busting, confidence boosting games use simple, fun-to-play exercises designed to help players develop and maintain a more positive state of mind.
Main Features :
- Over 100+ levels of gameplay in four training games
- Scientific Principles : based on the principles of social intelligence
- Progress Tracking
- Intuitive Interface : special characters and music to help the player develop a personal link with the game
- Science Lab : the player can find instructions and background information on how the science works";
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 = '';
}
}