var fDesc=new Array(); fDesc[0] = "Cell Mates Evaluation is a challenging word game where you move fragments to form words. The goal of Cell Mates is to construct correct words from a set of scrambled cells. The computer will select a group of words at random and scramble them into cells. You must complete the original words by returning the misaligned cells to their original locations."; 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 = ''; } }