var fDesc=new Array(); fDesc[0] = "SharpChess is a computer application that enables you to play chess against the computer. It features 16 preset difficultly levels, or specify custom settings using combinations of Move Time, Maximum Search Depth, and Pondering. You can undo/redo moves, load/save chess games during play, replay your saved games and much 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 = ''; } }