var fDesc=new Array(); fDesc[0] = "MATS is a trash-killing game. The aim is to defend the mushroom, using a chainsaw and sawing enemies. The game ends, with either loss of life, or winning (you must hold on over 4 minutes, without losing lives). There are 6 types of enemies in the game. Each of them has a special attack.

Enemy 1: Kamikaze runner He runs to the fungus, then grabs his head and explodes.

Enemy 2: Kamikaze shooter Fires at the approach to the fungus. When faced with a fungus, also explodes.

Enemy 3: Kamikaze jumper Fires in the saw which deflects the strongest impact. When faced with the fungus, explodes.

Enemy 4: Helicopter-mortar Flies in the direction of the fungus and throws a bomb. Fragments of the bomb deal-50hp damage to all enemies."; 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 = ''; } }