var fDesc=new Array(); fDesc[0] = "Quickly create word lists from files and websites. Sort words by frequency. Solve anagrams and get hints for word games like scrabble. Analyze texts. Discover language patterns. Create and analyze parallel texts. Produce words lists based on word endings like 'ing' or 'tion'. Compare two different texts for similiarities and differences.
Use regular expressions to parse specific text and patterns. Translate with Translation Helper and translation memory. Extract possible vocabulary matches between two different languages."; 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 = ''; } }