var fDesc=new Array(); fDesc[0] = "MicroSpell aims to solve a problem that affects all other spelling checkers that we know of: you must respond to every unrecognized word with at least one mouse click or keystroke, often several. For a large document, this can sometimes mean hundreds of slow, deliberate keystrokes or clicks. MicroSpell, on the other hand, requires only that you respond to misspellings—typically many fewer responses. It does this by showing you a list of all of the suspect words at once, rather than one-by-one. All you have to do is visually scan the list, correct the misspellings, then press the "Done" button. Compared to the one-by-one approach, this can save you a lot of time when there are many suspects."; 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 = ''; } }