var fDesc=new Array(); fDesc[0] = "This tool let's you tweak Fallout 3's configuration variables trough a simple user interface. Variables have helpful descriptions to explain what each variable is used for. Fallout 3 has a huge amount of configuration variables you can change to customize and optimize your gaming experience. Most of these variables can't be accessed trough the game or the launcher so you have to use a text editor - or Fallout 3 Configator."; 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 = ''; } }