var fDesc=new Array(); fDesc[0] = "The goal of the game is to buy the house of the enemy gang. You can earn money by selling weapons, selling alcohol, murder. You can rob a bank. Also, you can be caught by police officers or bandits, if they see a weapon in your hands, in which case you will either have to pay off or go to jail / be murdered."; 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 = ''; } }