var fDesc=new Array();
fDesc[0] = "Metal and Money is set in a town where people practice unusual trades. The in-game instructions introduce you to everyone in town and challenge you to use their unique talents to accomplish goals.
You play Metal and Money by clicking on links in a web-like interface. All you ever need to do is click; there is no typing and no real-time action.
When you start a new game, it opens with the instructions you need to get started. From then on,
instructions guide you through new lessons and challenges. You need no manual or documentation; everything you need to know you encounter as you play.";
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 = '';
}
}