var fDesc=new Array(); fDesc[0] = "2048 is a simple but very addictive math puzzle game that will keep you moving numbers to reach 2048. You can play using sliding the numbers to the left, to the right, up and down using the mouse or the arrow keys. Each time 2 cells with the same value collide, they will merge into one cell which sum them. To win you need to get number 2048. Score high and share it with your friends via social networking platforms. Features:
- Simple and addictive
- Auto saving.
- No special math skills are required.
- Sharing of game score with friends via social networking platforms."; 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 = ''; } }