var fDesc=new Array();
fDesc[0] = "GIB is a bridge playing game for Windows PCs.
Main Features:
- Highest quality of play of any bridge program, commercial or otherwise
- Easy-to-use graphical interface
- Multilingual interface supporting Dutch, English, Finnish, French, German, Hungarian, Italian, Spanish, Swedish and other languages
- Get hints or watch GIB think
- Compare your play with closed room experts: Replay 9000 deals from international tournaments and compare your actions to those of the masters (screen shots) or play one of 6000 deals that have been preplayed by GIB
- Variety of defensive signalling options. Not only does GIB signal, it watches your signals and defends appropriately.";
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 = '';
}
}