var fDesc=new Array(); fDesc[0] = "You step into the role of a shadowy Techno-Godfather, recruiting gangs and sending them out to do dark deeds to bring you money, exploring the land to extract information, and taking over the city and increasing your influence. The police and rival gangs seek to stop you at any cost, arresting your men. You can hire lawyers and bribe or kill judges to interfere with the wheels of justice that stand in your way"; 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 = ''; } }