var fDesc=new Array();
fDesc[0] = "Mind Mapping is the intuitive and fun way to visualize and organize your ideas. It is a simple and powerful tool used by many individuals and companies to be better at whatever they do.
Use Mind Mapping to:
- Organize your thoughts clearly
- Understand and remember easily
- Communicate and present effectively
- Plan and run projects successfully
NovaMind is the culmination of almost a decade of research, experience and a passion for mind mapping software.
- Familiar user interface
- Create beautiful mind maps easily
- MS Office file import & export
- Available for both Windows & Mac
NovaMind is quick to learn and easy to use, yet has unparalleled power and flexibility.";
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 = '';
}
}