var fDesc=new Array();
fDesc[0] = "This game is a real boon for those who like to play monopoly. Long-awaited continuation of a big business is finally realized.
A monopoly in the real estate is already set long ago. This is not true for space. Space is a quite unmastered area.
In this economic strategy You will have to master space on the basis of monopoly laws! Having a small start-up capital and a perfect spaceship, you must conquer the whole galaxy.";
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 = '';
}
}