var fDesc=new Array();
fDesc[0] = "This game is an adaptation of the well known hangman game.
Main features:
- Customizable sounds and gallow pictures.
- Four level of difficulty.
- Skin Themes.
- Numerous dictionaries available.
- The player can create dictionaries, with the integrated editor.
Other features:
- Selectable keyboards (AZERTY, QWERTY or ABCDEF).
- Words and definitions can be printed.
- Size and color setup for words and definitions.
- Play against the clock.
- Multi- player game (up to four players).
- Network game (master/slave mode).";
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 = '';
}
}