var fDesc=new Array();
fDesc[0] = "SWAN Games Bridge is an Internet tournament for all bridge game lovers.
Main Features:
- Easy to use interface for play 24 hours a day with people from all over the world. Individual chatboxes for managing private conversations.
- Advanced rating system with instant update. Trick by trick animated hand review.
- Online helpdesk with live assistance.
- Statistics, Friendlist, Rating lists, Messageboard, Partnership Bidding and Practice tables.";
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 = '';
}
}