var fDesc=new Array();
fDesc[0] = "RentWizard is a tool for the game SimTower, which is a real-time strategy/simulation computer game. With this utility you can raise/lower the rent in the whole tower at the same time.
Instructions:
-First you have to start a new tower. (won't work with an old tower.)
-Select the lobbies tool.
-While holding down the "ctrl" "shift" key place down your lobby.
-Bigger lobbies make people less stressed!.
-This will only work with the ground floor lobby and not on the sky lobbies.";
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 = '';
}
}