var fDesc=new Array();
fDesc[0] = "This is a brain trainer with a difference... 20 amazingly addictive and FUN puzzles, each at 5 increasing levels of difficulty. Not only fun, but it will train your brain across a wide range of differing aptitudes such as; Verbal, Spatial, Numerical, and Musical. There are 20 different games plus 4 types of test and progress reports. Challenge your brain and make sure it's functioning at it's optimum potential. What a pity school days were never this much fun.
BrainSchool is available in three vesions: for Pocket PC / Windows Mobile, Smartphone, and Windows PC.";
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 = '';
}
}