var fDesc=new Array();
fDesc[0] = "The new RealFibs Windows FIBS client for paying Backgammon online.
Features:
- Easier reply to users that tell you something
- No illegal moves possible any more
- It's now possible to stop watching
- The automatic kibitz at match start works
- Easy to use modern windows outfit
- Separated server, private and public chat windows
- Graphic view of pip count
- View of possible moves at mouse over
- Auto connect at start up
- Free scalable board graphics
- Free adjustable colors for board and windows
- Translating of german umlauts
- Supports a friend list
- Maximum/minimum point match auto refuse
- Support of RepBot's features";
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 = '';
}
}