var fDesc=new Array(); fDesc[0] = "Swiss Master is an application that enables users to make pairings for chess tournaments. Before the start of the tournament the tiebreaks should be decided. With TPR Mixed you get a mixture of the TPR's based on games against opponents with a FIDE rating and games against opponents without a FIDE rating, but with a national rating. In this way players without a FIDE rating can still see some kind of TPR."; 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 = ''; } }