var fDesc=new Array(); fDesc[0] = "MindMapper Pro is a program that allows you to visualize your projects. It provides three different interfaces; the Dashboard provides a birds-eye view of the entire project including schedule, goals, and other information. The Planner allows you to schedule items such as all day events, appointments, and important memos. The Mapper view provides a mind map to think, create, and organize information in visual format. Here you can edit maps, add hyperlink and attachments, brainstorm, and collaborate."; 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 = ''; } }