var fDesc=new Array(); fDesc[0] = "This is a version of the very old and simple word game where you can choose from the word lists provided or make your own. The idea of the game is to guess the word or phrase picked at random from a list before the hangman scaffold is fully built. Each time you guess a letter, if it appears in a word it will show up in the correct position including if it appears more than once. For every letter you try that is not in the word or phrase, a piece of the hangman scaffold is shown. 700 words phrases included in the download. Word lists or categories included with the program are World Countries, Capital Cities, Bible Characters, Birds, Animals, Insects, Flowers, Vegetables, Films, Children's Films, Sports and Fruits. Program includes an uninstall facility."; 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 = ''; } }