var fDesc=new Array(); fDesc[0] = "M.U.G.E.N is a 2D fighting game engine that is enables you to create commercial-quality fighting games. Almost everything can be customized, from individual characters to stages, as well as the look and feel of the game. Customizable title screen, character select screen, life and bars, game sound effects, fonts and more. Characters can have any number of sounds and sprites of any size limited by your computer's memory. Choose from multiple resolutions, ranging from 320x240 up to full HD at 1920x1080."; 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 = ''; } }