var fDesc=new Array();
fDesc[0] = "Far Whist is a card game program for playing Elevator Whist against the computer (not on a network).In Far Whist, you can choose how the number of cards dealt goes from 1 to 13 (increasing by 1, 2 or 3).Far Whist has the following variations:
--Elevator Whist
--Oh Hell! (variation close to Elevator Whist)
--Other variations (by combining the numerous options)
--Romanian Whist (variation with 32 cards)";
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 = '';
}
}