var fDesc=new Array();
fDesc[0] = "Enter a tiny world in your computer with this amazing casual family sim, Virtual Families 2: Our Dream House! Adopt characters and help them choose a mate and start a family! Encourage them to work in their chosen career to earn money for necessities and luxuries. Expand and renovate the house. Make a nursery, a music room or even a game room! Help your character get through the challenges of life and shape their personalities with all sorts of upgrades, from psychotherapy to career counseling and many more!
Features:
Real-time game play!
Unique and fascinating adoptees
Fully trainable people! Scold or praise them to shape and adapt their personalities!
Dynamic illness system. Play doctor!";
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 = '';
}
}