var fDesc=new Array(); fDesc[0] = "CodeSpell adds real-time, intelligent detection and correction of misspelled words to Visual Studio. CodeSpell can operate in one of two ways. It will automatically spell check as you type, or you can interactively spell check single files or the entire solution. If you think that checking your spelling as you go will slow you down, think again.

CodeSpell works in the background, using adaptive algorithms to suspend spell checking while you are typing quickly, essentially squeezing in checks between the pauses in your words without ever interfering with your keystrokes. CodeSpell is going to find your spelling errors, not slow you down."; 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 = ''; } }