var fDesc=new Array(); fDesc[0] = "Four on a row is the PC version of the classic family game. It allows you to play against a PC player or another human player. The PC player acts like a human, cause it will make a stupid move sometimes. The info on whether you want to play against a PC or another human is saved into a file so the next time you start the game, it is automatically using that setting!"; 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 = ''; } }