var fDesc=new Array(); fDesc[0] = "A lot of people spend their time entering different textual information into computers. State of the art in this process is touch typing. If you want to type faster, you have to learn to press keys faster. But typing fast is hard to master, and puts a lot of strain on your hands. The other way to type faster is to enter more text with the same number of key presses. Your computer could guess what are you going to type, and propose a shortcut to enter the whole word or even a couple of words in just one click. This is what Foretype does. Having analyzed enormous amounts of text, Foretype is able to predict the most probable continuation for many phrases."; 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 = ''; } }