var fDesc=new Array(); fDesc[0] = "A digital version of Master Mind for Windows. Keeps player stats and allows game variations. I wrote this in '96 in Visual Basic. To play, use the right mouse button to place or remove pegs.

Mastoid Mind is a really cool digital version of the logic game Master Mind™. The object of the game is to guess a random pattern of four colors chosen by the computer. The computer will pick its pattern based on the settings you have chosen in the Options menu and the check boxes below the playing board. If neither Allow Blanks nor Allow Repeated Colors are checked, the computer will choose a non-repeating pattern using the colors displayed in the color choice column to the right of the playing board. The number of color choices depends on the settings in the Options menu. You can play with 6 or 7 (harder, obviously) colors. With Allow Blanks checked, there is in effect an extra color to choose from--think of a blank as another color. The most difficult game is with both Allow Blanks and Allow Repeated Colors checked and 7 colors. Below are the number of possible patterns for each game type."; 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 = ''; } }