var fDesc=new Array(); fDesc[0] = "You will need eyes of an eagle to spot the hidden egg in this game. You have three chickens to choose from. Only one chicken holds the egg. Try to pinpoint which chicken is sitting on the egg. Sounds easy right? This is a simple classic game with cocky twist! Keep track of the chicken with the egg as the rooster moves shuffles them all around. Use the mouse to click the correct chicken when he has finished. Do not let the rooster confuse you, good luck!"; 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 = ''; } }