var fDesc=new Array();
fDesc[0] = "The Axon Idea Processor provides thinking tools from simple ones like checklists and questions, to more complex tools like 3D visualizers, analyzers, generators, and simulators.
Axon helps you to:
- Work with ideas and concepts rather than words.
- See the big picture and not get lost in details.
- Analyze and solve more complex problems.
- Stimulate creativity and discovery.
- Effectively amplify your mental potential.
- Focus attention and minimize distractions.
- Reduce mental fatigue and writers' blocks.";
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 = '';
}
}