var fDesc=new Array(); fDesc[0] = "Factorio is a factory building game where you mine resources and increase production to earn points. You can use your imagination to design your factory in any manner. You should also fight your enemies and creatures that come to destroy your buildings."; 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 = ''; } }