var fDesc=new Array(); fDesc[0] = "The Math-o-mir is a tool designed to write and edit mathematical equations. It is designed to act as your personal math notepad where you can write down your quick and informal calculations. In Math-o-mir you can touch expressions and expression elements and then, by mouse click, copy them around your mathematical document and insert them into other equations. You can also make simple hand-drawings to illustrate your equations."; 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 = ''; } }