var fDesc=new Array(); fDesc[0] = "The plot of this board game is simple...
Bring all three knights to safety and do not let them fall in the hands of the Dark Knight (screenshot 1).
Dark Knight is similar to chess, but not as complex and time consuming as you will see. You must execute your moves fast without exposing your knights to the dark knight. If you like chess you might not like Dark Knight (to stressful), but if you don't like chess (to slow and boring) you might like Dark Knight."; 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 = ''; } }