var fDesc=new Array(); fDesc[0] = "Tom's Live Chess Viewer is a utility for watching live computer vs computer chess tourneys being broadcast on the internet. The utility provides information on who is playing, time left on clocks, time control, scores, thinking output, nodes per second, and more, all in real time. The viewer also has a chat feature that will enable you to talk with other users who are watching the same match. Games you are watching are recorded in PGN format in real time so that you have a record of the game. Users can also get up to date results table information that will show who is winning the tournament and the results of the last round of games played. The Viewer can be opened multiple times to watch different games being broadcast from separate sites."; 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 = ''; } }