var fDesc=new Array();
fDesc[0] = "Oblivion - BTmod improve many aspects of the stock Oblivion UI:
- Increase the amount of the Inventory, Magic, Container(Looting), Repair and Alchemy Ingredients listings to 12 or higher
- Increased area to view Local and World Maps
- Increased area to view Quests and Journal
- Increased area to view Skills, Factions and Accomplishments
- Added percentage display to HP/MP/FA display
- Added Durability status under the Weapon Icon on the Main Hud
- Enabled and cleaned up Spell Effect durtation timers
- During Custom Class Creation, increased the size of the enterable name
- Mapped Arrow Keys to various Menu buttons.";
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 = '';
}
}