var fDesc=new Array();
fDesc[0] = "SimEnhancer 3D is a Character and Neighborhood Editor for editing attributes related to each one in your "The Sims™" game and has tools to help locate problems and create new outfits.
Main features:
- View characters similarly to how they will be seen in the game. (3D View)
- Backup, copy, rename, and restore neighborhoods
- Tag each neighborhood with a description viewable in SimEnhancer 3D
- Delete Unwanted Characters";
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 = '';
}
}