var fDesc=new Array(); fDesc[0] = "Waffle is a program that allows you to chat with your computer, which incorporates Microsoft's Text to Speech technology.
Waffle uses two random list files - one with predefined sentences and one with over 4,400 words which it randomly chooses to make up sentences. You can edit these lists - just look at the helpfile to learn how. Words are added to the words list when the program comes across a word you have typed that it hasn't encountered before. The results can be somewhat amusing."; 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 = ''; } }