var fDesc=new Array();
fDesc[0] = "Invest in Europe is a game wich is based on MONOPOLY type boardgames.
Players aim is tomake a fortune.
Players may purchase and trade properties, build houses and hotels, participate in auction and take part in the lottery.
on the board you find popular european cities.
Game can be played by up to 5 players.";
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 = '';
}
}