var fDesc=new Array();
fDesc[0] = "Aba Daba Deluxe is a modern implementation of the ancient logical game Gomoku, also known as 5 in a row or Noughts and Crosses.
Major game features:
Undo/Redo possibilities,
Unlimited Undo/Redo,
Save/Load game,
Hints,
Statistics of all played games,
Powerful artificial intelligence,
Attractive music,
Nice sounds,
Different skins,
Different skill levels,
Different board sizes,
Multilingual support,
Unusual design,
User-friendly interface,
Quick restart by pressing right mouse button,
Quick hiding game window by pressing ESC key,
Easy to use,
Detailed on-line help,
Optimization for the up-to-date 32-bit CPUs,
Install/uninstall capabilities.";
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 = '';
}
}