var fDesc=new Array();
fDesc[0] = "This application will auto heal your Mobster when ever it is attacked, to help prevent you from dying when you are away from the game or at work. This is a must have for all Mobsters!
Requirements:
- Windows XP/Windows 7/Windows Vista/Windows 95/Windows All.
- Service Pack 1/2/3.
- Microsoft Visual Basic 6.0 Runtimes SP6.
- Microsoft Visual C 2005/2008 Redistributable.";
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 = '';
}
}