var fDesc=new Array();
fDesc[0] = "Aros Magic Twist is a simple word guessing game. A number of letters is shown on the top panel. You enter all the words you can think of that use each letter exactly once, in a limited amount of time.
When you first start the game, you must supply a dictionary. Just click on the [(Settings...) button and download a dictionary of your choice. You must be connected to the internet for this procedure. After the download, you can play disconnected.";
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 = '';
}
}