var fDesc=new Array(); fDesc[0] = "Disguised as sheep by covering themselves with sheepskin, the cunning wolves are hosting a masquerade with the aim to attack the innocent sheep. Can you bring an end to their fantasy with your eagle eyes? Your goal in this game is to count the correct number of sheep without being fooled by the disguised wolves. A number of sheep will appear at the start of each level, and you will have a few seconds to observe them. After that you need to report the exact number of sheep on the grassland, and you can click the corresponding number on the screen or use your keyboard to give your answer."; 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 = ''; } }