var fDesc=new Array(); fDesc[0] = "This program generates funny and amusing topics for you to write stories about. A number of different phrases in five different categories are contained in the program. The program selects randomly one phrase for each of these five categories, adds some more words, and gives you a funny sounding topic. You can ask the program to find and print topics as many times as you like. You can also add your own phrases to the five categories."; 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 = ''; } }