var fDesc=new Array(); fDesc[0] = "English into plain English machine translation. English text interpreter. Translates the English text using simple, more widely used words. Substitutes the synonyms with one pre-chosen synonym or concept, depending on context, while preserving the meaning of the text. Can use up to 10 times less different words to interpret the meaning of the original english text.
Translates words regardless of British or American spelling. Translates both in interactive and in batch mode. Translates portions of text directly from the Internet, selected, copied and pasted for translation. The program corrects most orthographical and grammatical errors automatically.
An additional program highlights the orthographical errors and suggests corrections. It also highlights some correctly written words in order to offer a better choice of selected synonyms."; 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 = ''; } }