var fDesc=new Array(); fDesc[0] = "Get four in a row? Seems easy enough. But it may not be so simple to get four first! After all, every move you choose can also help your opponent get ahead. It takes quick wits and a sharp eye to watch the board and avoid being tricked. But pick the right way to build your line of four and you can come out on top before anyone even notices that you’re ahead! Across, diagonal, down...or up! Four Up is a great strategy game that’s fun in any direction!"; 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 = ''; } }