var fDesc=new Array();
fDesc[0] = "This ruleset accompanies the product Fantasy Grounds.
What's included with this Fantasy Grounds II ruleset:
- All of the d20 Modern SRD, available from Wizards of the Coast.
- Fantasy Grounds II modules for the core rules, psionics, spells, and monsters.
- A complete Fantasy Grounds II ruleset, with a d20 Modern character sheet.
- New modern-style graphics, optimized for online play.
- OGL information from d20 Future, d20 FX, Urban Arcana, and the Menace Manual.";
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 = '';
}
}