var fDesc=new Array(); fDesc[0] = "In search of profit and gold in the country of Eldorado, everything went completely wrong. In addition to treasures: rubies, gold and diamonds, it's easy to run into evil creatures and local barbarians. Well, there is no turning back. Die to the poor or defend yourself and take everything! Good luck!"; 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 = ''; } }