var fDesc=new Array(); fDesc[0] = "Fire and Ice in which you will be an embodiment of ice or fire. You can use left/right keys to move forward/backward and use up key to jump on enemies’ heads to knock them out or press space bar to shoot them. Pay attention to the life bar on the top left corner of the screen which shows your rest life. If you are attacked by the enemies, your life will be surrendered and if only you fell into the river or the life bar met with an end, the game would be over. Meanwhile, try as possible to collect the gold coins and kinds of diamonds which can help you maximize your scores."; 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 = ''; } }