var fDesc=new Array(); fDesc[0] = "In this game the god of fortune will fly around the sky and throw down money continuously, you need to use the mouse to control a man to catch the money. The need to be careful because the ghosts of poverty will also appear, if you make contact with them, then you will lose money."; 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 = ''; } }