var fDesc=new Array();
fDesc[0] = "Effective Mind develops software for Brainstorming. The software makes it possible to increase Your own creativity and think of more different and competitive ideas.
The software supports the creative process from the challenge to impulses to get new ideas, prioritizing and visualization of the potential of the new ideas. With tools for evaluation, it makes the process of evaluating ideas more efficient.";
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 = '';
}
}