var fDesc=new Array();
fDesc[0] = "Five letters are given each to two players. One common stack of five letters contains five vowels (AIOUE). A player on its turn can swap one of its letters with any letter of other player, or with the top letter in the common stack. Game ends when one of the player makes a valid word. Good for younger player who wish to learn new words while having fun.
- Load a user created dictionary or use one of the two provided with the program
- Human (player 2) starts first
- Tick letters that you wish to swap
- Tick one of the other player letters, or the common stack";
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 = '';
}
}