var fDesc=new Array(); fDesc[0] = "In this game there will be a star and you need to put coins into the corners of the star for as many as possible. Each time you put a coin, you must first place it on an empty corner, and then slide it along an edge to another empty corner and release the coin here. The more coins you put and the faster you finish, the higher your score."; 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 = ''; } }