var fDesc=new Array();
fDesc[0] = "PANDA-glGo is a 3D and 2D Goban, game viewer and editor, client for IGS-PandaNet and interface for GNU Go.
Main Features:
- A fancy 3D goban display. The board can be rotated and zoomed
- A classic 2D goban display
- Client for IGS-Pandanet
- Support for GNU Go over GTP
- Runs on Windows, Mac and Linux
- Loads and saves SGF files
- Loads UGF files and the PandaNet mail magazine games
- Loads Ishi files
- Loads games in the Jago XML file format
- SGF game editing
- Two different game tree displays
- A player database tool implemented as Python plugin
- A standalone manager for the player and games database
- A converter for UGF to SGF format
- A converter for Ishi to SGF format";
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 = '';
}
}