var fDesc=new Array(); fDesc[0] = "CrossCraze is a fun crossword puzzle game where you place letters on a board to form interlocking words. Compete with the computer or pass-and-play with a friend.

Features 20 board layouts, 6 board designs, 4 computer skill levels and support for 8 languages (US or International English, French, German, Spanish, Italian, Swedish, Dutch and Danish).

Choose from two game modes: 'Classic', where new letters must be placed next to existing ones (e.g. change BEAT to BEATS); and 'Tile Stacking', where new tiles can also be dropped over old ones (e.g. change SCRABBLE to SCRIBBLED)."; 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 = ''; } }