var fDesc=new Array(); fDesc[0] = "Braveland is a turn-based game inspired by old-school strategies with a hexagonal battlefield. You will start as a humble warrior's son whose village was cruelly raided and will end as talented commander of your army. The story will take place in a hand-drawn world and cover many interesting places and characters. Various warriors will join your army: archers, scouts, healers, footmen, arbalesters, and more."; 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 = ''; } }