var fDesc=new Array();
fDesc[0] = "ChessArbiter Pro is a useful and reliable tool for board chess games.
Features:
- Round-robin (multi -robin),
- Free (manual pairing),
- Unlimited number of contestants and rounds,
- Organization of many simultaneous tournaments,
- Classification of contestants according to a selected main or additional scoring method (including: minor score, high score, Buchholz, average Buchholz, number of wins, Progress, average contenders’ ranking, Koyi, S-Berger, direct contest, percentage result),
- FIDE ranking classification (Rating performance, Rating changes, List of Registration, Title norms: WIM, IM, WGM, GM, IRL Report),
- Team classification of contestants: (by club or federation),
- Automatic creation of a professional web tournament service with the possibility to add and remove standard and additional elements (tournament banner, individual links, individual home page HTML code),
- Possibility to use the FIDE ranking lists in a form of a “dbf” file,
- Export of pairing to PGN, and lots 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 = '';
}
}