var fDesc=new Array(); fDesc[0] = "The main goal of the Egypt Cross Number game is similar to a crossword puzzle: to fill in horizontal or vertical lines in the grid. However, instead of the clues and words you get a set of predefined numbers to use. There is only one right solution to a puzzle that would guarantee for all numbers to fit on the board and to interlock correctly."; 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 = ''; } }