var fDesc=new Array(); fDesc[0] = "In this game there will be a table full of food, and you will need to arrange the family members to sit at the table. Each family member will have their own preference of whether to sit close to a certain dish, or not to sit close to a certain dish, they may also like to sit close to a certain person, or not to sit close to a certain person. Use the mouse to drag the family members to their seats, and then press the finish button when finished. The better the family members' preferences are met, the higher the score you get."; 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 = ''; } }