var fDesc=new Array(); fDesc[0] = "Equation Maker is an easy-to-use math text editor. It combines the simplicity of a normal text editor and the power of a word processor, because EM documents can contain mathematical formulas and rich graphics content while storing all needed information in standard text files. The idea was taken from programming languages and hypertext markup language (html). Formulas written as plain text go through a fast, effective parser and draws in mathematic notation. EM files contain links to graphic files. Greek symbols are replaced with their Latin name equivalents."; 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 = ''; } }