var fDesc=new Array(); fDesc[0] = "GlobalSpellChecker is a tool for checking spelling or meaning of words from any application using Microsoft Word. It displays the meaning or spelling suggestion in a non-disturbing way so that you do not have to shift from the application you are working. You can copy the word to be checked to Clipboard by pressing Ctrl+C and invoke GlobalSpellChecker using hotkey Ctrl+Alt+S. When spelling suggestions are displayed, copy any suggestion to clipboard by pressing it's corresponding number.
Display time of spelling suggestions and meanings is configurable. Unlike other programs in this category, GlobalSpellchecker is loaded in memory only when called and exits after spelling check is complete."; 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 = ''; } }