var fDesc=new Array(); fDesc[0] = "This add-in allows a user to find and highlight ways to improve the writing using Microsoft Word. The application will show the overused and complex words report. It can also check the grammar and usage based on a house style. The type of report can be selected so that the program will work effectively - it can be business, academic, general, etc.

The Internet is required for the application to work. The speed of checking is not that good. It also slows down the MS Word application if a large file is opened for the analysis."; 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 = ''; } }