var fDesc=new Array(); fDesc[0] = "Thief: The Dark Project, a first-person game, uses a complex environmental simulation coupled with an artificial intelligence system to create a rich, immersive game world that supports its core gameplay: stealth, strategy, and suspense. The player assumes the role of Garrett, a master thief living in an unnamed, ancient city in a fictional past where magic and primitive technology uneasily coexist. The city has three main factions: the mysterious Keepers, a fanatical religious sect known as the Hammers, and the pagans."; 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 = ''; } }